R Markdown

This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com.

When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within the document. You can embed an R code chunk like this:

library(tidyverse)
## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ──
## ✓ ggplot2 3.3.5     ✓ purrr   0.3.4
## ✓ tibble  3.1.6     ✓ dplyr   1.0.8
## ✓ tidyr   1.2.0     ✓ stringr 1.4.0
## ✓ readr   2.1.2     ✓ forcats 0.5.1
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## x dplyr::filter() masks stats::filter()
## x dplyr::lag()    masks stats::lag()
library(ggpubr)
library(scales)
## 
## Attaching package: 'scales'
## The following object is masked from 'package:purrr':
## 
##     discard
## The following object is masked from 'package:readr':
## 
##     col_factor
library(glue)
library(plotly)
## 
## Attaching package: 'plotly'
## The following object is masked from 'package:ggplot2':
## 
##     last_plot
## The following object is masked from 'package:stats':
## 
##     filter
## The following object is masked from 'package:graphics':
## 
##     layout
library(ggplot2)
library(stringr)
library(lubridate )
## 
## Attaching package: 'lubridate'
## The following objects are masked from 'package:base':
## 
##     date, intersect, setdiff, union
library(dplyr)
library(zoo)
## 
## Attaching package: 'zoo'
## The following objects are masked from 'package:base':
## 
##     as.Date, as.Date.numeric
library(hrbrthemes)
## NOTE: Either Arial Narrow or Roboto Condensed fonts are required to use these themes.
##       Please use hrbrthemes::import_roboto_condensed() to install Roboto Condensed and
##       if Arial Narrow is not on your system, please see https://bit.ly/arialnarrow
library(viridis)
## Loading required package: viridisLite
## 
## Attaching package: 'viridis'
## The following object is masked from 'package:scales':
## 
##     viridis_pal
obesity <- read.csv("obesity.csv", stringsAsFactors = T)
names(obesity) <- c("Gender", "Age", "Height", "Weight", "Family_History_with_Overweight",
       "Frequent_consumption_of_high_caloric_food", "Frequency_of_consumption_of_vegetables", "Number_of_main_meals", "Consumption_of_food_between_meals", "Smoke", "Consumption_of_water_daily", "Calories_consumption_monitoring", "Physical_activity_frequency", "Time_using_technology_devices",
       "Consumption_of_alcohol", "Transportation_used", "Obesity")
obesity <- obesity %>% mutate_at(vars(Frequency_of_consumption_of_vegetables, Number_of_main_meals,Consumption_of_water_daily, Physical_activity_frequency, Time_using_technology_devices), funs(round(.,0)))
## Warning: `funs()` was deprecated in dplyr 0.8.0.
## Please use a list of either functions or lambdas: 
## 
##   # Simple named list: 
##   list(mean = mean, median = median)
## 
##   # Auto named with `tibble::lst()`: 
##   tibble::lst(mean, median)
## 
##   # Using lambdas
##   list(~ mean(., trim = .2), ~ median(., na.rm = TRUE))
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
str(obesity)
## 'data.frame':    2111 obs. of  17 variables:
##  $ Gender                                   : Factor w/ 2 levels "Female","Male": 1 1 2 2 2 2 1 2 2 2 ...
##  $ Age                                      : num  21 21 23 27 22 29 23 22 24 22 ...
##  $ Height                                   : num  1.62 1.52 1.8 1.8 1.78 1.62 1.5 1.64 1.78 1.72 ...
##  $ Weight                                   : num  64 56 77 87 89.8 53 55 53 64 68 ...
##  $ Family_History_with_Overweight           : Factor w/ 2 levels "no","yes": 2 2 2 1 1 1 2 1 2 2 ...
##  $ Frequent_consumption_of_high_caloric_food: Factor w/ 2 levels "no","yes": 1 1 1 1 1 2 2 1 2 2 ...
##  $ Frequency_of_consumption_of_vegetables   : num  2 3 2 3 2 2 3 2 3 2 ...
##  $ Number_of_main_meals                     : num  3 3 3 3 1 3 3 3 3 3 ...
##  $ Consumption_of_food_between_meals        : Factor w/ 4 levels "Always","Frequently",..: 4 4 4 4 4 4 4 4 4 4 ...
##  $ Smoke                                    : Factor w/ 2 levels "no","yes": 1 2 1 1 1 1 1 1 1 1 ...
##  $ Consumption_of_water_daily               : num  2 3 2 2 2 2 2 2 2 2 ...
##  $ Calories_consumption_monitoring          : Factor w/ 2 levels "no","yes": 1 2 1 1 1 1 1 1 1 1 ...
##  $ Physical_activity_frequency              : num  0 3 2 2 0 0 1 3 1 1 ...
##  $ Time_using_technology_devices            : num  1 0 1 0 0 0 0 0 1 1 ...
##  $ Consumption_of_alcohol                   : Factor w/ 4 levels "Always","Frequently",..: 3 4 2 2 4 4 4 4 2 3 ...
##  $ Transportation_used                      : Factor w/ 5 levels "Automobile","Bike",..: 4 4 4 5 4 1 3 4 4 4 ...
##  $ Obesity                                  : Factor w/ 7 levels "Insufficient_Weight",..: 2 2 2 6 7 2 2 2 2 2 ...
write_csv(obesity,"obesity_new.csv" )
obesity_new <- read.csv("obesity_new.csv", stringsAsFactors = T)
str(obesity_new)
## 'data.frame':    2111 obs. of  17 variables:
##  $ Gender                                   : Factor w/ 2 levels "Female","Male": 1 1 2 2 2 2 1 2 2 2 ...
##  $ Age                                      : num  21 21 23 27 22 29 23 22 24 22 ...
##  $ Height                                   : num  1.62 1.52 1.8 1.8 1.78 1.62 1.5 1.64 1.78 1.72 ...
##  $ Weight                                   : num  64 56 77 87 89.8 53 55 53 64 68 ...
##  $ Family_History_with_Overweight           : Factor w/ 2 levels "no","yes": 2 2 2 1 1 1 2 1 2 2 ...
##  $ Frequent_consumption_of_high_caloric_food: Factor w/ 2 levels "no","yes": 1 1 1 1 1 2 2 1 2 2 ...
##  $ Frequency_of_consumption_of_vegetables   : int  2 3 2 3 2 2 3 2 3 2 ...
##  $ Number_of_main_meals                     : int  3 3 3 3 1 3 3 3 3 3 ...
##  $ Consumption_of_food_between_meals        : Factor w/ 4 levels "Always","Frequently",..: 4 4 4 4 4 4 4 4 4 4 ...
##  $ Smoke                                    : Factor w/ 2 levels "no","yes": 1 2 1 1 1 1 1 1 1 1 ...
##  $ Consumption_of_water_daily               : int  2 3 2 2 2 2 2 2 2 2 ...
##  $ Calories_consumption_monitoring          : Factor w/ 2 levels "no","yes": 1 2 1 1 1 1 1 1 1 1 ...
##  $ Physical_activity_frequency              : int  0 3 2 2 0 0 1 3 1 1 ...
##  $ Time_using_technology_devices            : int  1 0 1 0 0 0 0 0 1 1 ...
##  $ Consumption_of_alcohol                   : Factor w/ 4 levels "Always","Frequently",..: 3 4 2 2 4 4 4 4 2 3 ...
##  $ Transportation_used                      : Factor w/ 5 levels "Automobile","Bike",..: 4 4 4 5 4 1 3 4 4 4 ...
##  $ Obesity                                  : Factor w/ 7 levels "Insufficient_Weight",..: 2 2 2 6 7 2 2 2 2 2 ...
obesity_new <- obesity_new %>% mutate(Frequency_of_consumption_of_vegetables = as.factor(Frequency_of_consumption_of_vegetables),
                              Number_of_main_meals = as.factor(Number_of_main_meals),
                              Consumption_of_water_daily = as.factor(Consumption_of_water_daily),
                              Physical_activity_frequency = as.factor(Physical_activity_frequency),
                              Time_using_technology_devices = as.factor(Time_using_technology_devices))
old_1 <- c("1", "2", "3")
old_2 <- c("1", "2", "3", "4")
old_3 <- c("1", "2", "3")
old_4 <- c("0", "1", "2", "3")
old_5 <- c("0", "1", "2")

new_1 <- c("Never", "Sometimes", "Always")
new_2 <- c("1", "2", "3", "3+")
new_3 <- c("Less than a liter", "Between 1 and 2 L", "More than 2 L")
new_4 <- c("I do not have", "1 - 2 times", "3 - 4 times", "More than 4 times")
new_5 <- c("0–2 hours", "3–5 hours", "More than 5 hours")

mapping1 <- setNames(old_1, new_1)
mapping2 <- setNames(old_2, new_2)
mapping3 <- setNames(old_3, new_3)
mapping4 <- setNames(old_4, new_4)
mapping5 <- setNames(old_5, new_5)
obesity_new$Frequency_of_consumption_of_vegetables <- do.call(
  fct_recode,
  c(list(obesity_new$Frequency_of_consumption_of_vegetables), setNames(old_1, new_1)))

obesity_new$Number_of_main_meals <- do.call(
  fct_recode,
  c(list(obesity_new$Number_of_main_meals), setNames(old_2, new_2)))

obesity_new$Consumption_of_water_daily <- do.call(
  fct_recode,
  c(list(obesity_new$Consumption_of_water_daily), setNames(old_3, new_3)))

obesity_new$Physical_activity_frequency <- do.call(
  fct_recode,
  c(list(obesity_new$Physical_activity_frequency), setNames(old_4, new_4)))

obesity_new$Time_using_technology_devices <- do.call(
  fct_recode,
  c(list(obesity_new$Time_using_technology_devices), setNames(old_5, new_5)))
colSums(is.na(obesity_new))
##                                    Gender 
##                                         0 
##                                       Age 
##                                         0 
##                                    Height 
##                                         0 
##                                    Weight 
##                                         0 
##            Family_History_with_Overweight 
##                                         0 
## Frequent_consumption_of_high_caloric_food 
##                                         0 
##    Frequency_of_consumption_of_vegetables 
##                                         0 
##                      Number_of_main_meals 
##                                         0 
##         Consumption_of_food_between_meals 
##                                         0 
##                                     Smoke 
##                                         0 
##                Consumption_of_water_daily 
##                                         0 
##           Calories_consumption_monitoring 
##                                         0 
##               Physical_activity_frequency 
##                                         0 
##             Time_using_technology_devices 
##                                         0 
##                    Consumption_of_alcohol 
##                                         0 
##                       Transportation_used 
##                                         0 
##                                   Obesity 
##                                         0
obesity_new <- obesity_new %>% mutate_at(vars(Age, Weight), funs(round(.,0)))
obesity_new$Height <- obesity_new$Height *100
head(obesity_new, 20)
##    Gender Age Height Weight Family_History_with_Overweight
## 1  Female  21    162     64                            yes
## 2  Female  21    152     56                            yes
## 3    Male  23    180     77                            yes
## 4    Male  27    180     87                             no
## 5    Male  22    178     90                             no
## 6    Male  29    162     53                             no
## 7  Female  23    150     55                            yes
## 8    Male  22    164     53                             no
## 9    Male  24    178     64                            yes
## 10   Male  22    172     68                            yes
## 11   Male  26    185    105                            yes
## 12 Female  21    172     80                            yes
## 13   Male  22    165     56                             no
## 14   Male  41    180     99                             no
## 15   Male  23    177     60                            yes
## 16 Female  22    170     66                            yes
## 17   Male  27    193    102                            yes
## 18 Female  29    153     78                             no
## 19 Female  30    171     82                            yes
## 20 Female  23    165     70                            yes
##    Frequent_consumption_of_high_caloric_food
## 1                                         no
## 2                                         no
## 3                                         no
## 4                                         no
## 5                                         no
## 6                                        yes
## 7                                        yes
## 8                                         no
## 9                                        yes
## 10                                       yes
## 11                                       yes
## 12                                       yes
## 13                                        no
## 14                                       yes
## 15                                       yes
## 16                                        no
## 17                                       yes
## 18                                       yes
## 19                                       yes
## 20                                        no
##    Frequency_of_consumption_of_vegetables Number_of_main_meals
## 1                               Sometimes                    3
## 2                                  Always                    3
## 3                               Sometimes                    3
## 4                                  Always                    3
## 5                               Sometimes                    1
## 6                               Sometimes                    3
## 7                                  Always                    3
## 8                               Sometimes                    3
## 9                                  Always                    3
## 10                              Sometimes                    3
## 11                                 Always                    3
## 12                              Sometimes                    3
## 13                                 Always                    3
## 14                              Sometimes                    3
## 15                                 Always                    1
## 16                                 Always                    3
## 17                              Sometimes                    1
## 18                              Sometimes                    1
## 19                                 Always                   3+
## 20                              Sometimes                    1
##    Consumption_of_food_between_meals Smoke Consumption_of_water_daily
## 1                          Sometimes    no          Between 1 and 2 L
## 2                          Sometimes   yes              More than 2 L
## 3                          Sometimes    no          Between 1 and 2 L
## 4                          Sometimes    no          Between 1 and 2 L
## 5                          Sometimes    no          Between 1 and 2 L
## 6                          Sometimes    no          Between 1 and 2 L
## 7                          Sometimes    no          Between 1 and 2 L
## 8                          Sometimes    no          Between 1 and 2 L
## 9                          Sometimes    no          Between 1 and 2 L
## 10                         Sometimes    no          Between 1 and 2 L
## 11                        Frequently    no              More than 2 L
## 12                        Frequently    no          Between 1 and 2 L
## 13                         Sometimes    no              More than 2 L
## 14                         Sometimes    no          Between 1 and 2 L
## 15                         Sometimes    no          Less than a liter
## 16                            Always    no          Between 1 and 2 L
## 17                         Sometimes    no          Less than a liter
## 18                         Sometimes    no          Between 1 and 2 L
## 19                        Frequently   yes          Less than a liter
## 20                         Sometimes    no          Between 1 and 2 L
##    Calories_consumption_monitoring Physical_activity_frequency
## 1                               no               I do not have
## 2                              yes           More than 4 times
## 3                               no                 3 - 4 times
## 4                               no                 3 - 4 times
## 5                               no               I do not have
## 6                               no               I do not have
## 7                               no                 1 - 2 times
## 8                               no           More than 4 times
## 9                               no                 1 - 2 times
## 10                              no                 1 - 2 times
## 11                              no                 3 - 4 times
## 12                             yes                 3 - 4 times
## 13                              no                 3 - 4 times
## 14                              no                 3 - 4 times
## 15                              no                 1 - 2 times
## 16                             yes                 3 - 4 times
## 17                              no                 1 - 2 times
## 18                              no               I do not have
## 19                              no               I do not have
## 20                              no               I do not have
##    Time_using_technology_devices Consumption_of_alcohol   Transportation_used
## 1                      3–5 hours                     no Public_Transportation
## 2                      0–2 hours              Sometimes Public_Transportation
## 3                      3–5 hours             Frequently Public_Transportation
## 4                      0–2 hours             Frequently               Walking
## 5                      0–2 hours              Sometimes Public_Transportation
## 6                      0–2 hours              Sometimes            Automobile
## 7                      0–2 hours              Sometimes             Motorbike
## 8                      0–2 hours              Sometimes Public_Transportation
## 9                      3–5 hours             Frequently Public_Transportation
## 10                     3–5 hours                     no Public_Transportation
## 11             More than 5 hours              Sometimes Public_Transportation
## 12                     3–5 hours              Sometimes Public_Transportation
## 13                     0–2 hours              Sometimes Public_Transportation
## 14                     3–5 hours             Frequently            Automobile
## 15                     3–5 hours              Sometimes Public_Transportation
## 16                     3–5 hours              Sometimes Public_Transportation
## 17                     0–2 hours              Sometimes Public_Transportation
## 18                     0–2 hours                     no            Automobile
## 19                     0–2 hours                     no            Automobile
## 20                     0–2 hours              Sometimes Public_Transportation
##                Obesity
## 1        Normal_Weight
## 2        Normal_Weight
## 3        Normal_Weight
## 4   Overweight_Level_I
## 5  Overweight_Level_II
## 6        Normal_Weight
## 7        Normal_Weight
## 8        Normal_Weight
## 9        Normal_Weight
## 10       Normal_Weight
## 11      Obesity_Type_I
## 12 Overweight_Level_II
## 13       Normal_Weight
## 14      Obesity_Type_I
## 15       Normal_Weight
## 16       Normal_Weight
## 17 Overweight_Level_II
## 18      Obesity_Type_I
## 19 Overweight_Level_II
## 20  Overweight_Level_I
plot(obesity_new$Height,obesity_new$Weight,
     col = obesity_new$Gender,
     xlab = "Height",
     ylab = "Weight",
     pch = 20) #style bullet
abline(lm(obesity_new$Weight~obesity_new$Height),
       lwd = 1, #line width
       lty = 1) #line type
legend("topright",
       legend = levels(obesity_new$Gender),
       fill = 1:2) #berapa banyak warna yang ditampilkan
title("Correlation between Height and Weight on Each Gender")

height_weight <- obesity_new %>%
  select(c(Gender, Height, Weight))
height_weight <- pivot_longer(data = height_weight,
                           cols = c("Height","Weight"),
                           names_to = "variabel")
ggplot(data = height_weight, mapping = aes(x = Gender, y = value))+
  geom_boxplot(aes(fill=Gender), position = "dodge")+
  facet_wrap(vars(variabel)) #memisahkan plot berdasarkan variable parameter

obesity_new
##      Gender Age   Height Weight Family_History_with_Overweight
## 1    Female  21 162.0000     64                            yes
## 2    Female  21 152.0000     56                            yes
## 3      Male  23 180.0000     77                            yes
## 4      Male  27 180.0000     87                             no
## 5      Male  22 178.0000     90                             no
## 6      Male  29 162.0000     53                             no
## 7    Female  23 150.0000     55                            yes
## 8      Male  22 164.0000     53                             no
## 9      Male  24 178.0000     64                            yes
## 10     Male  22 172.0000     68                            yes
## 11     Male  26 185.0000    105                            yes
## 12   Female  21 172.0000     80                            yes
## 13     Male  22 165.0000     56                             no
## 14     Male  41 180.0000     99                             no
## 15     Male  23 177.0000     60                            yes
## 16   Female  22 170.0000     66                            yes
## 17     Male  27 193.0000    102                            yes
## 18   Female  29 153.0000     78                             no
## 19   Female  30 171.0000     82                            yes
## 20   Female  23 165.0000     70                            yes
## 21     Male  22 165.0000     80                            yes
## 22   Female  52 169.0000     87                            yes
## 23   Female  22 165.0000     60                            yes
## 24   Female  22 160.0000     82                            yes
## 25     Male  21 185.0000     68                            yes
## 26     Male  20 160.0000     50                            yes
## 27     Male  21 170.0000     65                            yes
## 28   Female  23 160.0000     52                             no
## 29     Male  19 175.0000     76                            yes
## 30     Male  23 168.0000     70                             no
## 31     Male  29 177.0000     83                             no
## 32   Female  31 158.0000     68                            yes
## 33   Female  24 177.0000     76                             no
## 34     Male  39 179.0000     90                             no
## 35     Male  22 165.0000     62                             no
## 36   Female  21 150.0000     65                            yes
## 37   Female  22 156.0000     49                             no
## 38   Female  21 160.0000     48                             no
## 39     Male  23 165.0000     67                            yes
## 40   Female  21 175.0000     88                            yes
## 41   Female  21 167.0000     75                            yes
## 42     Male  23 168.0000     60                             no
## 43   Female  21 166.0000     64                            yes
## 44     Male  21 166.0000     62                            yes
## 45     Male  21 181.0000     80                             no
## 46   Female  21 153.0000     65                            yes
## 47     Male  21 182.0000     72                            yes
## 48     Male  21 175.0000     72                            yes
## 49   Female  20 166.0000     60                            yes
## 50   Female  21 155.0000     50                             no
## 51   Female  21 161.0000     54                            yes
## 52   Female  20 150.0000     44                             no
## 53   Female  23 164.0000     52                             no
## 54   Female  23 163.0000     55                            yes
## 55   Female  22 160.0000     55                             no
## 56     Male  23 168.0000     62                             no
## 57     Male  22 170.0000     70                            yes
## 58     Male  21 164.0000     65                            yes
## 59   Female  17 165.0000     67                            yes
## 60     Male  20 176.0000     55                            yes
## 61   Female  21 155.0000     49                            yes
## 62     Male  20 165.0000     58                             no
## 63     Male  22 167.0000     62                             no
## 64     Male  22 168.0000     55                            yes
## 65   Female  21 166.0000     57                            yes
## 66   Female  21 162.0000     69                            yes
## 67     Male  23 180.0000     90                            yes
## 68     Male  23 165.0000     95                            yes
## 69     Male  30 176.0000    112                            yes
## 70     Male  23 180.0000     60                            yes
## 71   Female  23 165.0000     80                            yes
## 72   Female  22 167.0000     50                            yes
## 73   Female  24 165.0000     60                            yes
## 74     Male  19 185.0000     65                            yes
## 75     Male  24 170.0000     85                            yes
## 76   Female  23 163.0000     45                            yes
## 77   Female  24 160.0000     45                            yes
## 78   Female  24 170.0000     80                            yes
## 79   Female  23 165.0000     90                            yes
## 80     Male  23 165.0000     60                            yes
## 81   Female  19 163.0000     58                             no
## 82     Male  30 180.0000     91                            yes
## 83     Male  23 167.0000     86                            yes
## 84   Female  19 160.0000     45                             no
## 85     Male  25 170.0000     83                            yes
## 86     Male  23 165.0000     58                            yes
## 87     Male  21 185.0000     83                            yes
## 88     Male  19 182.0000     87                            yes
## 89   Female  22 165.0000     65                            yes
## 90   Female  29 170.0000     78                            yes
## 91   Female  25 163.0000     93                             no
## 92   Female  20 161.0000     64                            yes
## 93     Male  55 178.0000     84                            yes
## 94   Female  20 160.0000     57                             no
## 95   Female  24 160.0000     48                             no
## 96     Male  26 170.0000     70                            yes
## 97   Female  23 166.0000     60                            yes
## 98   Female  21 152.0000     42                             no
## 99   Female  21 152.0000     42                             no
## 100    Male  23 172.0000     70                             no
## 101  Female  21 169.0000     63                             no
## 102    Male  22 170.0000     66                            yes
## 103  Female  21 155.0000     57                             no
## 104  Female  22 165.0000     58                            yes
## 105  Female  38 156.0000     80                            yes
## 106  Female  25 157.0000     55                             no
## 107  Female  25 157.0000     55                             no
## 108    Male  22 188.0000     90                            yes
## 109    Male  22 175.0000     95                            yes
## 110  Female  21 165.0000     88                            yes
## 111    Male  21 175.0000     75                            yes
## 112  Female  22 158.0000     58                            yes
## 113  Female  18 156.0000     51                            yes
## 114  Female  22 150.0000     49                            yes
## 115  Female  19 161.0000     62                            yes
## 116  Female  17 175.0000     57                            yes
## 117  Female  15 165.0000     86                            yes
## 118  Female  17 170.0000     85                            yes
## 119    Male  23 162.0000     53                            yes
## 120  Female  19 163.0000     76                            yes
## 121  Female  23 167.0000     75                            yes
## 122    Male  23 187.0000     95                            yes
## 123    Male  21 175.0000     50                            yes
## 124    Male  24 166.0000     67                            yes
## 125    Male  23 176.0000     90                             no
## 126    Male  18 175.0000     80                            yes
## 127    Male  19 167.0000     68                             no
## 128  Female  19 165.0000     61                             no
## 129    Male  20 172.0000     70                            yes
## 130    Male  27 170.0000     78                             no
## 131  Female  20 158.0000     53                            yes
## 132    Male  23 162.0000     58                             no
## 133  Female  19 165.0000     56                            yes
## 134  Female  61 165.0000     66                             no
## 135    Male  30 177.0000    109                            yes
## 136    Male  24 170.0000     75                            yes
## 137    Male  25 179.0000     72                            yes
## 138    Male  44 160.0000     80                            yes
## 139    Male  31 176.0000     75                            yes
## 140    Male  25 170.0000     68                             no
## 141    Male  23 189.0000     65                            yes
## 142    Male  25 187.0000     66                             no
## 143    Male  23 174.0000     94                             no
## 144  Female  34 168.0000     75                             no
## 145    Male  22 161.0000     67                            yes
## 146    Male  21 162.0000     70                             no
## 147  Female  24 156.0000     51                             no
## 148  Female  36 163.0000     80                            yes
## 149  Female  27 160.0000     61                             no
## 150  Female  32 167.0000     90                            yes
## 151    Male  25 178.0000     78                            yes
## 152  Female  30 162.0000     59                            yes
## 153  Female  38 150.0000     60                            yes
## 154    Male  34 169.0000     84                            yes
## 155    Male  22 174.0000     94                            yes
## 156  Female  31 168.0000     63                            yes
## 157  Female  35 153.0000     45                            yes
## 158    Male  21 167.0000     60                            yes
## 159  Female  40 155.0000     62                            yes
## 160    Male  27 164.0000     78                            yes
## 161    Male  20 183.0000     72                            yes
## 162    Male  55 165.0000     80                             no
## 163  Female  21 163.0000     60                            yes
## 164    Male  25 189.0000     75                             no
## 165    Male  35 177.0000     85                            yes
## 166    Male  30 192.0000    130                            yes
## 167  Female  29 174.0000     72                            yes
## 168    Male  20 165.0000     80                            yes
## 169  Female  22 173.0000     79                            yes
## 170  Female  45 163.0000     77                            yes
## 171    Male  22 172.0000     82                             no
## 172    Male  18 160.0000     58                            yes
## 173  Female  23 165.0000     59                             no
## 174    Male  18 174.0000     64                             no
## 175    Male  21 162.0000     70                             no
## 176  Female  38 164.0000     60                            yes
## 177  Female  18 157.0000     48                            yes
## 178    Male  22 184.0000     84                            yes
## 179    Male  26 191.0000     84                            yes
## 180    Male  21 162.0000     70                             no
## 181  Female  18 158.0000     48                             no
## 182  Female  23 168.0000     67                            yes
## 183  Female  22 168.0000     52                             no
## 184  Female  23 148.0000     60                            yes
## 185    Male  21 162.0000     70                             no
## 186  Female  31 162.0000     68                             no
## 187    Male  39 178.0000     96                            yes
## 188    Male  25 178.0000     98                            yes
## 189    Male  35 178.0000    105                            yes
## 190  Female  33 163.0000     62                            yes
## 191    Male  20 160.0000     56                             no
## 192    Male  26 175.0000     80                            yes
## 193    Male  20 183.0000     85                            yes
## 194    Male  20 178.0000     68                             no
## 195  Female  23 160.0000     83                            yes
## 196    Male  19 180.0000     85                            yes
## 197    Male  22 175.0000     74                            yes
## 198    Male  41 175.0000    118                            yes
## 199  Female  18 159.0000     40                            yes
## 200  Female  23 166.0000     60                            yes
## 201  Female  23 163.0000     83                            yes
## 202  Female  41 154.0000     80                            yes
## 203  Female  26 156.0000    102                            yes
## 204    Male  29 169.0000     90                            yes
## 205    Male  27 183.0000     71                            yes
## 206  Female  23 160.0000     78                            yes
## 207    Male  19 175.0000    100                            yes
## 208    Male  30 175.0000     73                            yes
## 209  Female  22 169.0000     65                            yes
## 210  Female  22 169.0000     65                            yes
## 211    Male  20 180.0000    114                            yes
## 212  Female  21 163.0000     51                             no
## 213  Female  24 150.0000     63                            yes
## 214    Male  21 180.0000     62                            yes
## 215    Male  21 165.0000     53                            yes
## 216    Male  21 168.0000     70                            yes
## 217  Female  23 160.0000     63                            yes
## 218    Male  21 171.0000     75                             no
## 219  Female  21 150.0000     42                            yes
## 220  Female  21 160.0000     68                            yes
## 221  Female  21 175.0000     78                            yes
## 222    Male  23 172.0000     82                            yes
## 223  Female  21 172.0000     66                            yes
## 224  Female  22 161.0000     63                            yes
## 225  Female  23 163.0000     82                            yes
## 226    Male  25 183.0000    121                            yes
## 227  Female  20 160.0000     50                             no
## 228  Female  24 162.0000     58                             no
## 229  Female  40 168.0000     80                             no
## 230    Male  32 175.0000    120                            yes
## 231    Male  20 190.0000     91                            yes
## 232  Female  21 163.0000     66                            yes
## 233  Female  51 159.0000     50                            yes
## 234  Female  34 168.0000     77                            yes
## 235  Female  19 159.0000     49                            yes
## 236  Female  19 169.0000     70                            yes
## 237  Female  21 166.0000     59                             no
## 238  Female  19 164.0000     53                            yes
## 239  Female  20 162.0000     53                             no
## 240  Female  19 170.0000     64                            yes
## 241  Female  17 163.0000     65                             no
## 242    Male  22 160.0000     66                             no
## 243  Female  20 163.0000     64                            yes
## 244    Male  33 185.0000     99                            yes
## 245  Female  21 154.0000     49                            yes
## 246  Female  20 164.0000     49                             no
## 247  Female  20 157.0000     60                             no
## 248  Female  20 162.0000     52                             no
## 249    Male  21 172.0000     72                            yes
## 250    Male  21 176.0000     78                            yes
## 251  Female  20 165.0000     75                            yes
## 252    Male  20 167.0000     78                            yes
## 253    Male  56 179.0000     90                            yes
## 254  Female  26 159.0000     47                            yes
## 255  Female  22 164.0000     56                            yes
## 256    Male  19 178.0000     81                            yes
## 257    Male  18 175.0000     85                            yes
## 258    Male  19 185.0000    115                             no
## 259    Male  18 170.0000     80                             no
## 260  Female  18 167.0000     91                            yes
## 261    Male  21 172.0000     75                             no
## 262  Female  28 170.0000     73                            yes
## 263    Male  18 174.0000     70                             no
## 264    Male  23 174.0000     53                             no
## 265    Male  18 187.0000     67                            yes
## 266    Male  18 170.0000     50                             no
## 267  Female  39 165.0000     50                             no
## 268    Male  38 170.0000     78                             no
## 269    Male  17 167.0000     60                             no
## 270    Male  23 172.0000     66                            yes
## 271    Male  23 182.0000    107                             no
## 272  Female  19 150.0000     50                             no
## 273    Male  18 170.0000     60                             no
## 274    Male  25 171.0000     71                            yes
## 275  Female  25 161.0000     61                             no
## 276  Female  18 150.0000     50                            yes
## 277    Male  16 167.0000     50                            yes
## 278    Male  21 182.0000     67                             no
## 279  Female  32 157.0000     57                            yes
## 280    Male  18 179.0000     52                             no
## 281    Male  21 175.0000     62                             no
## 282    Male  18 170.0000     55                            yes
## 283  Female  18 162.0000     55                            yes
## 284    Male  17 169.0000     60                             no
## 285    Male  20 177.0000     70                            yes
## 286    Male  21 179.0000    105                            yes
## 287  Female  21 160.0000     61                             no
## 288  Female  18 160.0000     58                            yes
## 289  Female  17 156.0000     51                             no
## 290    Male  19 188.0000     79                             no
## 291    Male  16 182.0000     71                            yes
## 292    Male  17 180.0000     58                             no
## 293    Male  21 170.0000     65                            yes
## 294    Male  19 182.0000     75                            yes
## 295    Male  18 186.0000    110                            yes
## 296  Female  16 166.0000     58                             no
## 297  Female  21 153.0000     53                             no
## 298    Male  26 174.0000     80                             no
## 299    Male  18 180.0000     80                            yes
## 300    Male  23 170.0000     75                             no
## 301    Male  26 170.0000     70                             no
## 302    Male  18 172.0000     55                             no
## 303    Male  16 184.0000     45                            yes
## 304  Female  16 157.0000     49                             no
## 305    Male  20 180.0000     85                            yes
## 306    Male  23 175.0000    120                            yes
## 307  Female  24 156.0000     60                            yes
## 308  Female  23 159.0000     48                            yes
## 309    Male  20 180.0000     75                             no
## 310  Female  16 166.0000     58                             no
## 311    Male  17 179.0000     57                            yes
## 312    Male  17 172.0000     62                             no
## 313  Female  16 160.0000     57                             no
## 314    Male  17 166.0000     56                            yes
## 315  Female  26 165.0000     63                             no
## 316    Male  26 170.0000     72                             no
## 317    Male  38 175.0000     75                            yes
## 318    Male  18 175.0000     70                             no
## 319  Female  25 156.0000     45                             no
## 320  Female  27 155.0000     63                             no
## 321    Male  21 167.0000     67                            yes
## 322    Male  38 175.0000     75                            yes
## 323  Female  23 175.0000     56                             no
## 324    Male  18 180.0000     72                            yes
## 325  Female  30 165.0000     71                            yes
## 326  Female  21 155.0000     58                             no
## 327    Male  18 170.0000     55                            yes
## 328    Male  23 172.0000     76                            yes
## 329    Male  19 174.0000     74                            yes
## 330  Female  19 165.0000     82                            yes
## 331  Female  17 180.0000     50                             no
## 332    Male  17 174.0000     56                            yes
## 333    Male  27 185.0000     75                            yes
## 334  Female  23 170.0000     56                             no
## 335  Female  18 145.0000     53                             no
## 336    Male  19 170.0000     50                             no
## 337    Male  20 170.0000     65                             no
## 338    Male  18 178.0000     64                            yes
## 339  Female  17 160.0000     65                             no
## 340  Female  19 153.0000     42                             no
## 341    Male  21 180.0000     72                             no
## 342    Male  20 160.0000     50                             no
## 343    Male  23 174.0000    105                            yes
## 344    Male  23 165.0000     66                             no
## 345    Male  18 187.0000    173                            yes
## 346    Male  17 170.0000     55                             no
## 347  Female  21 154.0000     47                            yes
## 348    Male  17 180.0000     97                            yes
## 349    Male  18 182.0000     80                            yes
## 350    Male  20 198.0000    125                            yes
## 351    Male  17 175.0000     70                            yes
## 352  Female  26 165.0000     60                             no
## 353  Female  17 160.0000     53                             no
## 354  Female  24 160.0000     51                            yes
## 355  Female  17 160.0000     59                             no
## 356  Female  27 155.0000     62                             no
## 357    Male  17 190.0000     60                             no
## 358  Female  17 170.0000     56                            yes
## 359    Male  41 175.0000    110                            yes
## 360  Female  33 156.0000     48                            yes
## 361    Male  20 187.0000     75                             no
## 362  Female  40 156.0000     80                            yes
## 363  Female  37 165.0000     73                            yes
## 364    Male  19 180.0000     80                             no
## 365    Male  24 184.0000     86                            yes
## 366    Male  24 170.0000     68                             no
## 367    Male  33 172.0000     83                            yes
## 368  Female  40 158.0000     63                             no
## 369  Female  37 168.0000     83                            yes
## 370    Male  20 158.0000     74                             no
## 371    Male  19 180.0000     60                             no
## 372    Male  17 162.0000     69                            yes
## 373  Female  18 162.0000     58                             no
## 374  Female  21 154.0000     56                             no
## 375    Male  18 176.0000     70                            yes
## 376    Male  41 180.0000     92                            yes
## 377  Female  36 158.0000     60                            yes
## 378    Male  18 176.0000     68                             no
## 379    Male  18 173.0000     70                             no
## 380    Male  17 170.0000     70                            yes
## 381    Male  25 170.0000     83                             no
## 382    Male  21 180.0000     75                            yes
## 383  Female  29 160.0000     56                            yes
## 384    Male  17 170.0000     98                            yes
## 385  Female  18 160.0000     60                            yes
## 386  Female  16 155.0000     45                             no
## 387  Female  18 159.0000     53                             no
## 388  Female  37 150.0000     75                            yes
## 389    Male  18 178.0000    108                            yes
## 390  Female  16 161.0000     65                            yes
## 391    Male  23 171.0000     50                            yes
## 392  Female  18 170.0000     50                             no
## 393    Male  18 176.0000     70                             no
## 394    Male  18 170.0000     78                             no
## 395  Female  17 153.0000     55                            yes
## 396  Female  20 154.0000     39                            yes
## 397  Female  38 155.0000     59                            yes
## 398    Male  20 166.0000     60                             no
## 399    Male  21 185.0000    125                            yes
## 400    Male  21 165.0000     60                             no
## 401    Male  18 165.0000     70                            yes
## 402    Male  26 183.0000     82                             no
## 403    Male  27 183.0000     99                            yes
## 404  Female  26 166.0000    112                            yes
## 405    Male  34 178.0000     73                             no
## 406    Male  18 174.0000     86                             no
## 407    Male  33 176.0000     66                             no
## 408  Female  19 151.0000     59                            yes
## 409    Male  20 181.0000     79                            yes
## 410  Female  33 155.0000     55                            yes
## 411    Male  20 183.0000     66                             no
## 412  Female  20 160.0000     65                             no
## 413    Male  33 185.0000     85                             no
## 414    Male  33 175.0000     85                             no
## 415    Male  33 183.0000    113                            yes
## 416    Male  14 171.0000     72                            yes
## 417    Male  34 184.0000     88                             no
## 418    Male  18 177.0000     87                            yes
## 419    Male  18 170.0000     90                             no
## 420    Male  29 162.0000     89                            yes
## 421    Male  18 185.0000     60                            yes
## 422    Male  18 184.0000     60                            yes
## 423    Male  19 175.0000     58                             no
## 424    Male  33 185.0000     93                            yes
## 425    Male  33 174.0000     76                             no
## 426  Female  19 161.0000     54                            yes
## 427    Male  22 175.0000     70                             no
## 428  Female  20 167.0000     60                             no
## 429    Male  23 170.0000     69                             no
## 430    Male  26 190.0000     80                            yes
## 431    Male  18 165.0000     85                             no
## 432  Female  18 160.0000     55                             no
## 433    Male  19 180.0000     70                             no
## 434  Female  18 164.0000     59                            yes
## 435    Male  19 189.0000     87                             no
## 436  Female  19 176.0000     80                            yes
## 437  Female  18 156.0000     55                             no
## 438  Female  18 160.0000     56                            yes
## 439  Female  19 167.0000     64                             no
## 440  Female  19 160.0000     60                             no
## 441  Female  18 155.0000     56                             no
## 442  Female  18 155.0000     50                            yes
## 443    Male  26 172.0000     65                            yes
## 444    Male  18 172.0000     53                            yes
## 445    Male  19 170.0000     60                            yes
## 446  Female  19 151.0000     45                             no
## 447    Male  19 183.0000     82                            yes
## 448    Male  19 180.0000     87                            yes
## 449  Female  24 160.0000    100                            yes
## 450  Female  18 163.0000     63                            yes
## 451    Male  19 171.0000     71                             no
## 452    Male  19 170.0000     65                            yes
## 453    Male  23 175.0000     69                             no
## 454  Female  18 162.0000     50                             no
## 455  Female  20 168.0000     68                             no
## 456    Male  18 185.0000     66                             no
## 457  Female  33 159.0000     60                             no
## 458  Female  19 150.0000     45                             no
## 459    Male  19 169.0000     60                             no
## 460    Male  19 176.0000     79                            yes
## 461  Female  18 162.0000     55                            yes
## 462    Male  21 171.0000    100                            yes
## 463    Male  27 172.0000     88                            yes
## 464    Male  17 180.0000     68                            yes
## 465    Male  18 193.0000     86                             no
## 466  Female  18 160.0000     51                            yes
## 467    Male  22 174.0000     75                            yes
## 468    Male  22 174.0000     75                            yes
## 469  Female  20 162.0000     45                             no
## 470  Female  19 154.0000     42                             no
## 471  Female  20 156.0000     52                             no
## 472  Female  18 160.0000     83                            yes
## 473  Female  18 154.0000     71                             no
## 474  Female  18 163.0000     51                            yes
## 475    Male  19 178.0000     64                             no
## 476  Female  18 162.0000     68                             no
## 477  Female  18 171.0000     75                            yes
## 478  Female  18 164.0000     56                            yes
## 479    Male  19 169.0000     65                             no
## 480  Female  17 158.0000     50                             no
## 481  Female  18 157.0000     50                             no
## 482    Male  18 174.0000     64                            yes
## 483  Female  20 158.0000     54                            yes
## 484  Female  18 150.0000     58                             no
## 485  Female  36 165.0000     80                            yes
## 486    Male  21 180.0000     73                            yes
## 487    Male  23 175.0000     75                             no
## 488    Male  20 184.0000    104                            yes
## 489    Male  21 188.0000     84                            yes
## 490  Female  19 156.0000     50                             no
## 491    Male  24 175.0000     84                             no
## 492    Male  25 166.0000     68                             no
## 493    Male  45 170.0000     86                             no
## 494    Male  20 180.0000     65                             no
## 495  Female  18 167.0000     66                             no
## 496    Male  19 180.0000     60                            yes
## 497    Male  18 172.0000     53                            yes
## 498    Male  20 156.0000     45                             no
## 499  Female  25 168.6306    105                            yes
## 500  Female  19 168.3124    127                            yes
## 501  Female  26 162.2397    111                            yes
## 502  Female  22 175.5643    138                            yes
## 503  Female  22 184.3419    165                            yes
## 504  Female  18 174.5600    133                            yes
## 505  Female  26 163.0927    111                            yes
## 506  Female  26 162.9191    105                            yes
## 507  Female  22 177.0612    134                            yes
## 508    Male  20 174.3702     55                            yes
## 509    Male  17 177.1915     56                            yes
## 510    Male  22 175.3760     56                            yes
## 511  Female  22 167.5446     51                            yes
## 512  Female  21 166.6203     50                            yes
## 513  Female  22 171.1467     52                            yes
## 514  Female  21 159.8019     45                             no
## 515  Female  22 159.6110     43                             no
## 516  Female  22 157.2060     44                             no
## 517  Female  21 158.6952     43                             no
## 518  Female  23 159.5590     45                             no
## 519  Female  24 160.0000     45                             no
## 520  Female  19 168.8025     45                             no
## 521  Female  19 155.6211     42                             no
## 522  Female  19 156.4199     42                             no
## 523  Female  20 156.9480     41                             no
## 524  Female  21 152.0000     42                             no
## 525  Female  20 155.0648     45                             no
## 526  Female  20 152.0997     42                             no
## 527  Female  20 152.8011     42                             no
## 528  Female  21 152.0000     42                             no
## 529  Female  22 173.3263     51                             no
## 530  Female  21 172.2527     51                             no
## 531  Female  20 173.4832     50                             no
## 532    Male  23 188.2779     64                            yes
## 533    Male  23 185.4592     64                            yes
## 534    Male  23 183.5643     59                            yes
## 535    Male  18 175.5507     52                            yes
## 536    Male  22 171.2660     52                            yes
## 537    Male  18 169.4265     52                            yes
## 538  Female  19 158.6895     41                             no
## 539  Female  19 157.9561     42                             no
## 540  Female  19 156.4568     41                             no
## 541  Female  20 167.0635     50                             no
## 542  Female  20 168.8426     50                             no
## 543  Female  20 166.0840     49                             no
## 544  Female  23 171.0182     50                            yes
## 545  Female  20 175.5978     54                            yes
## 546  Female  23 172.8834     51                            yes
## 547  Female  19 166.2017     50                             no
## 548  Female  19 170.0000     50                             no
## 549  Female  19 166.1403     50                             no
## 550  Female  30 161.0863     50                            yes
## 551  Female  32 164.0688     47                            yes
## 552  Female  24 164.6030     50                            yes
## 553    Male  17 171.0564     52                             no
## 554    Male  16 175.2755     50                             no
## 555    Male  16 169.1007     53                             no
## 556    Male  18 175.3349     51                             no
## 557    Male  18 178.1543     51                             no
## 558    Male  18 175.5823     52                             no
## 559    Male  17 183.6669     59                            yes
## 560    Male  20 176.8493     58                            yes
## 561    Male  18 177.7108     57                            yes
## 562  Female  17 164.0824     43                             no
## 563  Female  17 158.4951     44                             no
## 564  Female  16 181.8268     47                             no
## 565    Male  18 179.3926     60                            yes
## 566    Male  17 180.9251     59                            yes
## 567    Male  19 176.7335     56                            yes
## 568  Female  22 169.9568     55                            yes
## 569  Female  21 175.9358     55                            yes
## 570  Female  23 174.0295     54                            yes
## 571  Female  19 173.9354     50                             no
## 572  Female  17 164.7811     50                             no
## 573  Female  19 176.8435     50                             no
## 574  Female  18 170.0000     50                             no
## 575  Female  20 169.9464     50                             no
## 576  Female  18 174.3790     50                             no
## 577  Female  20 159.0317     42                             no
## 578  Female  20 152.7133     42                             no
## 579  Female  19 153.0875     42                             no
## 580    Male  17 184.8294     59                            yes
## 581    Male  17 182.4414     59                            yes
## 582    Male  19 185.6633     59                            yes
## 583  Female  23 171.5597     50                            yes
## 584  Female  22 167.5054     50                            yes
## 585  Female  23 171.7601     51                            yes
## 586  Female  17 171.0756     50                             no
## 587  Female  18 170.0000     50                             no
## 588  Female  18 170.0000     50                             no
## 589  Female  19 157.3816     40                             no
## 590  Female  20 153.0884     39                             no
## 591  Female  20 152.9724     40                             no
## 592    Male  20 176.7563     56                            yes
## 593    Male  18 188.3364     60                            yes
## 594    Male  18 182.4655     59                            yes
## 595    Male  18 184.0138     60                            yes
## 596    Male  17 181.9557     58                            yes
## 597    Male  17 179.8645     60                            yes
## 598    Male  18 171.0800     51                            yes
## 599    Male  18 170.6530     51                            yes
## 600    Male  18 171.6691     51                            yes
## 601  Female  19 155.5431     44                             no
## 602  Female  19 160.3923     45                             no
## 603  Female  20 160.2082     45                             no
## 604  Female  19 153.7770     42                             no
## 605  Female  19 153.8398     42                             no
## 606  Female  19 152.0862     42                             no
## 607    Male  18 171.7826     52                            yes
## 608    Male  18 175.3389     54                            yes
## 609    Male  18 170.1650     50                            yes
## 610    Male  20 175.3360     55                            yes
## 611  Female  22 167.2007     50                            yes
## 612  Female  22 159.3847     44                             no
## 613  Female  23 158.4785     44                             no
## 614  Female  19 160.0264     45                             no
## 615  Female  21 154.9311     42                             no
## 616  Female  20 153.4385     42                             no
## 617  Female  21 172.5548     50                            yes
## 618    Male  20 186.8931     63                            yes
## 619  Female  21 168.6936     51                            yes
## 620  Female  18 158.9829     40                             no
## 621  Female  20 165.3209     49                             no
## 622  Female  23 174.0108     54                            yes
## 623  Female  18 170.0000     50                             no
## 624  Female  35 168.9141     50                            yes
## 625    Male  16 169.1206     50                             no
## 626    Male  18 178.8459     52                             no
## 627    Male  17 181.1238     59                            yes
## 628  Female  17 183.0068     44                             no
## 629    Male  17 178.2756     56                            yes
## 630  Female  23 175.1691     56                            yes
## 631  Female  18 178.6560     50                             no
## 632  Female  19 171.3670     50                             no
## 633  Female  19 154.0375     42                             no
## 634    Male  17 189.6734     60                            yes
## 635  Female  23 171.0129     50                            yes
## 636  Female  18 170.4193     51                             no
## 637  Female  19 155.6611     40                             no
## 638    Male  18 184.5399     60                            yes
## 639    Male  17 183.4637     60                            yes
## 640    Male  18 172.1854     53                            yes
## 641  Female  20 160.5521     45                             no
## 642  Female  19 153.0266     42                             no
## 643    Male  18 171.8890     52                            yes
## 644    Male  20 175.6338     55                            yes
## 645    Male  18 177.0324     56                            yes
## 646  Female  21 176.7479     56                            yes
## 647  Female  22 170.4223     51                            yes
## 648  Female  21 166.7852     50                            yes
## 649  Female  23 172.2461     52                            yes
## 650  Female  22 158.8046     44                             no
## 651  Female  23 159.8612     43                             no
## 652  Female  22 159.2379     44                             no
## 653  Female  21 155.5778     42                             no
## 654  Female  23 159.6466     45                             no
## 655  Female  22 159.8393     45                             no
## 656  Female  19 163.3316     45                             no
## 657  Female  19 155.9567     42                             no
## 658  Female  19 154.6551     42                             no
## 659  Female  20 156.6501     42                             no
## 660  Female  21 152.0000     42                             no
## 661  Female  20 159.9486     45                             no
## 662  Female  20 155.9186     42                             no
## 663  Female  21 152.3426     42                             no
## 664  Female  21 152.0000     42                             no
## 665  Female  22 168.9441     51                            yes
## 666  Female  21 173.7453     50                            yes
## 667  Female  19 173.2096     50                             no
## 668    Male  22 186.9098     61                            yes
## 669    Male  19 185.1123     61                            yes
## 670    Male  21 178.7264     59                            yes
## 671    Male  18 178.7787     52                            yes
## 672  Female  22 171.2515     52                            yes
## 673    Male  18 169.8914     52                            yes
## 674  Female  19 153.3609     42                             no
## 675  Female  19 156.7981     42                             no
## 676  Female  19 154.4263     42                             no
## 677  Female  19 167.0552     50                             no
## 678  Female  20 167.6346     49                             no
## 679  Female  20 166.7404     49                             no
## 680  Female  22 170.0110     50                            yes
## 681    Male  20 175.6330     55                            yes
## 682  Female  23 170.3584     52                            yes
## 683  Female  19 169.0727     50                             no
## 684  Female  18 171.3564     50                             no
## 685  Female  19 167.2310     50                             no
## 686  Female  27 166.0446     50                            yes
## 687  Female  25 163.0379     46                            yes
## 688  Female  23 165.5413     50                            yes
## 689    Male  18 173.2862     51                             no
## 690  Female  17 174.4020     50                             no
## 691    Male  18 175.7958     52                             no
## 692    Male  18 178.6758     52                             no
## 693    Male  18 176.7058     51                            yes
## 694    Male  18 169.9437     52                            yes
## 695    Male  17 182.5250     59                            yes
## 696    Male  20 179.3315     58                            yes
## 697    Male  19 177.6989     57                            yes
## 698  Female  19 160.9495     43                             no
## 699  Female  17 177.7929     45                             no
## 700  Female  17 171.0948     45                             no
## 701    Male  18 185.4162     60                            yes
## 702    Male  17 182.1514     60                            yes
## 703    Male  20 176.2073     56                            yes
## 704  Female  23 173.2307     55                            yes
## 705    Male  21 175.9933     55                            yes
## 706  Female  23 174.1377     55                            yes
## 707  Female  19 173.1195     50                             no
## 708  Female  17 174.8230     50                             no
## 709  Female  19 175.6865     50                             no
## 710  Female  18 170.1378     50                             no
## 711  Female  20 169.9956     50                             no
## 712  Female  18 172.3328     50                             no
## 713  Female  19 158.5886     43                             no
## 714  Female  21 152.4926     42                             no
## 715  Female  19 152.3370     42                             no
## 716    Male  17 184.4749     59                            yes
## 717    Male  17 185.3325     60                            yes
## 718    Male  18 185.4706     59                            yes
## 719  Female  21 172.0640     50                            yes
## 720  Female  22 170.4167     50                            yes
## 721  Female  22 171.7460     51                            yes
## 722  Female  18 170.8406     50                             no
## 723  Female  18 176.3465     50                             no
## 724  Female  18 170.0000     50                             no
## 725  Female  19 157.4017     41                             no
## 726  Female  20 153.7739     39                             no
## 727  Female  20 153.4223     41                             no
## 728    Male  20 176.0330     55                            yes
## 729    Male  18 184.1879     60                            yes
## 730    Male  18 185.6406     59                            yes
## 731    Male  18 182.9142     60                            yes
## 732    Male  17 182.2084     58                            yes
## 733    Male  17 180.6710     59                            yes
## 734    Male  18 170.7259     51                            yes
## 735    Male  18 170.8107     51                            yes
## 736    Male  18 173.9344     51                            yes
## 737  Female  19 157.3987     44                             no
## 738  Female  19 158.0920     45                             no
## 739  Female  20 160.3435     45                             no
## 740  Female  20 153.5350     42                             no
## 741  Female  19 153.1610     42                             no
## 742  Female  19 152.5691     42                             no
## 743    Male  18 171.9827     52                            yes
## 744    Male  18 172.2547     54                            yes
## 745    Male  18 173.8702     50                            yes
## 746    Male  27 181.6298     87                             no
## 747    Male  21 163.8085     70                             no
## 748    Male  25 181.3678     86                             no
## 749    Male  22 169.7228     76                            yes
## 750    Male  21 161.7469     69                             no
## 751    Male  19 185.5543     89                            yes
## 752  Female  42 172.1854     83                             no
## 753    Male  21 185.5353     86                            yes
## 754    Male  22 169.6336     75                            yes
## 755  Female  19 175.1631     80                            yes
## 756    Male  24 169.8346     75                            yes
## 757  Female  34 164.2971     75                            yes
## 758  Female  22 161.3668     68                            yes
## 759    Male  21 160.5404     68                             no
## 760  Female  35 152.9834     63                             no
## 761  Female  37 155.0000     62                            yes
## 762  Female  22 173.1261     78                            yes
## 763    Male  23 162.9194     70                             no
## 764    Male  21 162.0000     70                             no
## 765    Male  21 162.0000     70                             no
## 766  Female  31 163.3491     69                            yes
## 767    Male  21 175.2391     79                            yes
## 768    Male  20 181.8226     86                            yes
## 769    Male  20 180.9101     85                            yes
## 770    Male  21 170.9484     75                            yes
## 771    Male  21 160.7082     68                            yes
## 772  Female  23 171.8939     76                            yes
## 773    Male  20 183.1357     90                            yes
## 774  Female  22 160.0000     66                            yes
## 775  Female  21 175.4813     78                            yes
## 776    Male  18 177.8447     80                            yes
## 777    Male  21 170.9561     75                            yes
## 778  Female  29 167.4568     72                            yes
## 779    Male  26 175.5317     82                            yes
## 780    Male  23 170.8071     75                            yes
## 781    Male  20 180.6947     85                            yes
## 782  Female  24 159.9697     65                             no
## 783  Female  33 172.1903     73                            yes
## 784    Male  23 171.2556     75                            yes
## 785  Female  17 155.1288     55                             no
## 786  Female  16 160.3842     65                            yes
## 787  Female  24 158.8597     62                             no
## 788  Female  35 167.3482     73                            yes
## 789    Male  23 185.8624     89                            yes
## 790  Female  37 159.3894     63                            yes
## 791    Male  19 162.0000     70                             no
## 792  Female  16 161.6366     67                            yes
## 793  Female  18 163.7396     70                            yes
## 794  Female  19 155.0723     61                             no
## 795  Female  17 160.0000     65                            yes
## 796    Male  30 182.0471     88                             no
## 797  Female  32 165.7496     74                            yes
## 798    Male  18 175.2123     80                            yes
## 799    Male  19 185.7231     88                            yes
## 800  Female  19 176.0000     80                            yes
## 801  Female  18 164.4682     68                            yes
## 802  Female  18 173.7165     77                            yes
## 803  Female  20 150.7853     64                             no
## 804    Male  28 181.0060     87                             no
## 805    Male  27 180.1790     87                             no
## 806    Male  21 162.5891     70                             no
## 807    Male  22 164.0370     70                             no
## 808    Male  27 179.1047     83                             no
## 809    Male  22 167.9306     75                            yes
## 810  Female  21 161.5145     69                            yes
## 811  Female  21 161.6467     69                            yes
## 812    Male  20 181.6783     87                            yes
## 813    Male  19 181.2472     87                            yes
## 814  Female  42 176.8231     76                            yes
## 815    Male  22 187.0931     89                            yes
## 816    Male  21 186.3685     90                            yes
## 817    Male  23 167.0227     75                            yes
## 818    Male  23 171.7288     76                            yes
## 819    Male  19 175.0359     80                            yes
## 820    Male  23 170.7557     75                            yes
## 821  Female  33 167.2446     75                            yes
## 822  Female  33 167.5979     75                            yes
## 823  Female  22 161.1239     68                            yes
## 824  Female  22 161.1356     68                            yes
## 825    Male  21 162.0000     70                             no
## 826  Female  37 150.8908     63                            yes
## 827  Female  40 156.1109     63                            yes
## 828  Female  39 155.4728     63                            yes
## 829  Female  22 173.0182     79                            yes
## 830  Female  21 174.3841     79                            yes
## 831    Male  21 162.0000     70                             no
## 832    Male  21 162.0000     70                             no
## 833    Male  21 162.0000     70                             no
## 834    Male  21 162.0000     70                             no
## 835    Male  21 162.0000     70                             no
## 836  Female  29 164.2506     70                            yes
## 837  Female  31 169.3080     72                            yes
## 838    Male  23 175.2115     79                            yes
## 839    Male  26 174.5033     80                            yes
## 840    Male  20 182.0643     85                            yes
## 841    Male  20 180.7330     85                            yes
## 842    Male  20 180.0000     85                            yes
## 843    Male  19 181.4255     85                            yes
## 844    Male  22 170.0181     75                            yes
## 845  Female  22 160.4697     68                            yes
## 846  Female  21 161.1000     68                            yes
## 847  Female  21 175.4497     78                            yes
## 848  Female  21 175.2944     78                            yes
## 849    Male  19 185.9927     87                            yes
## 850    Male  22 189.6073     91                            yes
## 851    Male  22 160.5314     67                            yes
## 852  Female  21 175.8628     78                            yes
## 853  Female  21 175.5427     78                            yes
## 854  Female  19 177.9882     80                            yes
## 855    Male  21 171.2061     75                            yes
## 856    Male  21 167.6014     75                            yes
## 857  Female  28 170.0000     74                            yes
## 858    Male  29 176.5874     82                            yes
## 859    Male  26 174.5950     80                            yes
## 860    Male  23 169.0196     75                            yes
## 861    Male  20 181.7480     85                            yes
## 862  Female  22 158.0964     65                             no
## 863  Female  30 165.2084     74                            yes
## 864  Female  31 164.5511     69                            yes
## 865    Male  23 170.7968     75                            yes
## 866  Female  18 145.6346     56                             no
## 867  Female  18 149.8561     55                             no
## 868  Female  17 160.3501     65                            yes
## 869  Female  22 155.8045     64                             no
## 870  Female  27 155.0000     63                             no
## 871  Female  35 164.7514     74                            yes
## 872    Male  24 185.5779     86                            yes
## 873    Male  23 185.3223     87                            yes
## 874  Female  40 157.0811     62                            yes
## 875  Female  16 161.7124     68                            yes
## 876  Female  17 164.4053     67                            yes
## 877  Female  16 160.8914     65                            yes
## 878  Female  18 164.7971     69                            yes
## 879  Female  19 162.4831     70                            yes
## 880  Female  20 150.8267     61                             no
## 881  Female  19 151.8917     60                             no
## 882  Female  18 160.0000     65                            yes
## 883    Male  33 183.8791     88                             no
## 884  Female  33 173.0379     76                            yes
## 885  Female  19 175.9117     80                            yes
## 886  Female  19 175.5254     80                            yes
## 887    Male  19 180.4099     85                            yes
## 888    Male  19 181.3567     86                            yes
## 889  Female  21 175.6550     79                            yes
## 890  Female  19 175.6774     80                            yes
## 891  Female  18 162.0000     69                            yes
## 892  Female  21 170.9585     75                            yes
## 893  Female  17 153.5618     57                             no
## 894    Male  26 181.8848     87                             no
## 895    Male  27 181.7641     87                             no
## 896    Male  21 163.6592     70                             no
## 897    Male  21 162.1412     70                             no
## 898    Male  27 180.2871     86                            yes
## 899    Male  22 169.6201     75                            yes
## 900    Male  21 169.4633     75                            yes
## 901  Female  21 161.8148     69                            yes
## 902    Male  19 185.6811     89                            yes
## 903  Female  39 173.8321     87                             no
## 904  Female  40 173.9293     81                             no
## 905    Male  20 180.7538     85                            yes
## 906    Male  20 184.9425     85                            yes
## 907    Male  21 171.2473     75                            yes
## 908  Female  19 175.3471     80                            yes
## 909    Male  24 171.7432     75                            yes
## 910    Male  23 167.7573     75                            yes
## 911  Female  34 167.9725     75                            yes
## 912  Female  22 160.0914     68                            yes
## 913  Female  21 161.7749     69                            yes
## 914    Male  21 161.0209     69                             no
## 915    Male  21 161.2556     69                             no
## 916  Female  39 154.8178     62                            yes
## 917  Female  39 156.8441     63                            yes
## 918  Female  37 153.2322     62                            yes
## 919  Female  22 173.0199     79                            yes
## 920  Female  22 173.0167     78                            yes
## 921    Male  22 162.7396     70                             no
## 922    Male  21 162.0000     70                             no
## 923    Male  21 162.0000     70                             no
## 924    Male  21 162.0000     70                             no
## 925  Female  30 163.8744     69                            yes
## 926  Female  31 168.0858     72                            yes
## 927  Female  21 175.8372     79                            yes
## 928    Male  20 182.2573     85                            yes
## 929    Male  20 181.5409     85                            yes
## 930    Male  22 169.8049     75                            yes
## 931  Female  21 160.6810     68                            yes
## 932  Female  22 161.0327     68                            yes
## 933    Male  23 171.0415     75                            yes
## 934    Male  23 171.6289     76                            yes
## 935    Male  20 183.4715     89                            yes
## 936  Female  22 161.1822     67                            yes
## 937  Female  22 160.0000     66                            yes
## 938  Female  21 175.3578     78                            yes
## 939  Female  21 174.2364     79                            yes
## 940    Male  19 177.5626     80                            yes
## 941    Male  21 171.4253     75                            yes
## 942    Male  21 169.3628     75                            yes
## 943  Female  29 165.9172     71                            yes
## 944    Male  24 177.6347     82                            yes
## 945    Male  26 176.7806     83                            yes
## 946    Male  23 170.2516     75                            yes
## 947    Male  20 181.4182     85                            yes
## 948  Female  22 159.9940     65                             no
## 949  Female  32 166.6023     73                            yes
## 950    Male  23 170.1584     75                            yes
## 951    Male  23 171.3343     76                            yes
## 952  Female  17 148.9409     54                             no
## 953  Female  18 151.8067     56                             no
## 954  Female  16 161.6533     65                            yes
## 955  Female  23 158.9616     65                             no
## 956  Female  35 167.5612     74                            yes
## 957    Male  23 187.4061     90                            yes
## 958  Female  39 158.0765     63                            yes
## 959    Male  20 162.0000     70                             no
## 960  Female  16 161.3921     67                            yes
## 961  Female  18 161.8683     67                            yes
## 962    Male  19 163.7537     70                            yes
## 963  Female  20 156.6524     62                             no
## 964  Female  20 154.2328     64                             no
## 965  Female  17 160.0000     65                            yes
## 966  Female  17 160.0184     65                            yes
## 967    Male  29 177.3656     87                             no
## 968  Female  32 164.6020     74                            yes
## 969  Female  32 165.0150     74                            yes
## 970    Male  18 175.1029     80                            yes
## 971    Male  20 183.8266     89                            yes
## 972    Male  20 182.4449     88                            yes
## 973  Female  19 176.0000     79                            yes
## 974  Female  18 162.2241     68                            yes
## 975  Female  18 172.9996     76                            yes
## 976  Female  18 172.5233     76                            yes
## 977  Female  20 154.1039     65                             no
## 978    Male  21 177.3766     89                            yes
## 979    Male  22 175.4630     89                            yes
## 980    Male  21 167.4327     80                            yes
## 981    Male  21 172.0000     81                            yes
## 982    Male  33 191.3241    101                            yes
## 983    Male  31 173.7984     83                            yes
## 984    Male  30 170.3688     82                            yes
## 985    Male  21 171.6308     80                            yes
## 986    Male  23 165.0000     80                            yes
## 987  Female  29 157.8560     66                            yes
## 988    Male  39 178.0846     86                            yes
## 989    Male  35 182.3168     92                            yes
## 990  Female  20 152.5234     65                            yes
## 991  Female  22 148.1682     61                            yes
## 992    Male  19 176.8578     88                            yes
## 993  Female  21 156.9878     70                            yes
## 994  Female  21 156.8188     68                            yes
## 995    Male  22 179.2527     90                            yes
## 996    Male  23 179.5311     90                            yes
## 997  Female  23 170.0038     80                            yes
## 998  Female  23 166.8649     80                            yes
## 999    Male  25 170.0000     85                            yes
## 1000   Male  24 171.3825     84                            yes
## 1001 Female  25 170.0000     78                            yes
## 1002   Male  31 183.5381     91                            yes
## 1003   Male  24 170.0000     81                            yes
## 1004 Female  29 170.0000     78                            yes
## 1005   Male  18 170.0000     83                            yes
## 1006 Female  19 165.9877     77                            yes
## 1007   Male  26 183.6943     96                            yes
## 1008   Male  23 181.9614     93                            yes
## 1009   Male  23 171.7775     85                            yes
## 1010   Male  23 179.1867     90                            yes
## 1011 Female  25 170.0000     81                            yes
## 1012   Male  34 168.1080     84                            yes
## 1013 Female  27 166.0756     79                            yes
## 1014   Male  55 176.9269     80                             no
## 1015   Male  35 176.5188     85                            yes
## 1016   Male  22 165.0000     80                            yes
## 1017   Male  18 165.4757     80                            yes
## 1018 Female  42 164.7768     79                            yes
## 1019   Male  22 169.1303     81                            yes
## 1020 Female  29 153.2897     65                            yes
## 1021 Female  25 156.5288     65                            yes
## 1022 Female  22 150.0000     64                            yes
## 1023 Female  23 150.7106     65                            yes
## 1024   Male  23 170.0740     81                            yes
## 1025   Male  23 171.5118     82                            yes
## 1026 Female  38 169.6423     79                            yes
## 1027 Female  37 165.3088     80                            yes
## 1028 Female  34 168.1842     77                            yes
## 1029 Female  34 165.2202     77                            yes
## 1030   Male  31 184.8683     99                            yes
## 1031   Male  34 183.5678     96                            yes
## 1032 Female  19 156.0029     72                            yes
## 1033 Female  19 162.1048     72                            yes
## 1034   Male  20 169.9474     78                            yes
## 1035   Male  51 174.5528     82                            yes
## 1036   Male  18 172.0379     85                            yes
## 1037   Male  18 175.8787     85                            yes
## 1038   Male  19 170.4908     81                            yes
## 1039 Female  34 169.1322     78                            yes
## 1040   Male  17 178.6290     95                            yes
## 1041   Male  33 170.5617     83                            yes
## 1042   Male  33 173.3439     85                            yes
## 1043 Female  36 170.1397     83                            yes
## 1044 Female  20 162.5236     74                            yes
## 1045 Female  19 154.5196     72                            yes
## 1046   Male  34 184.3172     93                            yes
## 1047   Male  23 170.5813     82                            yes
## 1048   Male  20 170.4141     79                            yes
## 1049   Male  19 170.6082     78                            yes
## 1050   Male  30 184.2943     94                            yes
## 1051   Male  27 188.0992    100                            yes
## 1052   Male  21 172.6774     83                            yes
## 1053   Male  33 173.1960     84                            yes
## 1054   Male  18 175.1278     87                            yes
## 1055   Male  31 178.0448     88                            yes
## 1056   Male  33 185.0000     98                            yes
## 1057   Male  25 178.5241     88                            yes
## 1058   Male  24 171.8845     86                            yes
## 1059 Female  20 153.0248     69                            yes
## 1060 Female  34 166.4927     80                            yes
## 1061 Female  34 167.3333     77                            yes
## 1062   Male  23 172.5587     82                            yes
## 1063 Female  43 173.3875     87                            yes
## 1064 Female  45 167.5953     80                            yes
## 1065   Male  22 178.6238     90                            yes
## 1066   Male  21 171.8534     80                            yes
## 1067   Male  31 191.9543    102                            yes
## 1068   Male  31 170.7613     83                            yes
## 1069   Male  22 165.8393     80                            yes
## 1070 Female  31 153.6819     66                            yes
## 1071   Male  35 180.5459     90                            yes
## 1072 Female  21 152.1008     67                            yes
## 1073   Male  19 174.4733     87                            yes
## 1074 Female  20 152.9223     65                            yes
## 1075   Male  23 179.9742     90                            yes
## 1076 Female  23 168.1314     80                            yes
## 1077   Male  24 170.6912     86                            yes
## 1078 Female  24 166.3509     80                            yes
## 1079   Male  29 175.2265     88                            yes
## 1080   Male  25 173.5343     83                            yes
## 1081 Female  29 170.0000     78                            yes
## 1082   Male  17 170.0000     83                            yes
## 1083 Female  19 163.3794     78                            yes
## 1084   Male  24 185.6759     96                            yes
## 1085   Male  23 177.4330     90                            yes
## 1086 Female  29 170.0000     78                            yes
## 1087   Male  34 171.9509     84                            yes
## 1088 Female  28 165.8202     78                            yes
## 1089   Male  55 165.7221     81                            yes
## 1090   Male  35 171.3348     85                            yes
## 1091   Male  21 167.7178     80                            yes
## 1092 Female  38 167.8050     77                            yes
## 1093   Male  22 171.7722     82                            yes
## 1094 Female  21 148.6484     60                            yes
## 1095 Female  25 150.3379     64                            yes
## 1096   Male  23 171.8981     82                            yes
## 1097 Female  39 168.8354     79                            yes
## 1098 Female  34 166.5807     77                            yes
## 1099   Male  33 183.8441     97                            yes
## 1100 Female  20 165.3431     75                            yes
## 1101   Male  19 169.9818     78                            yes
## 1102   Male  46 171.8097     89                            yes
## 1103   Male  18 173.1389     84                            yes
## 1104   Male  19 169.9667     80                            yes
## 1105 Female  38 169.8626     79                            yes
## 1106   Male  23 182.3765     97                            yes
## 1107   Male  33 170.8742     83                            yes
## 1108 Female  37 166.7469     81                            yes
## 1109 Female  19 158.8147     74                            yes
## 1110   Male  37 183.5024     92                            yes
## 1111   Male  25 170.8800     84                            yes
## 1112   Male  18 168.0991     80                            yes
## 1113   Male  27 183.5271     98                            yes
## 1114   Male  18 174.2819     87                            yes
## 1115   Male  33 174.1192     85                            yes
## 1116   Male  18 175.9721     86                            yes
## 1117   Male  30 181.0616     93                            yes
## 1118   Male  25 176.3101     89                            yes
## 1119 Female  18 154.3338     72                            yes
## 1120 Female  35 165.1812     79                            yes
## 1121   Male  24 173.2492     85                            yes
## 1122 Female  39 170.6349     86                            yes
## 1123   Male  21 178.0679     90                            yes
## 1124   Male  23 175.8687     90                            yes
## 1125   Male  21 170.4573     80                            yes
## 1126   Male  21 171.6545     80                            yes
## 1127   Male  33 190.3832    100                            yes
## 1128   Male  33 174.2538     83                            yes
## 1129   Male  30 174.7739     83                            yes
## 1130   Male  21 171.7037     80                            yes
## 1131 Female  23 165.0000     80                            yes
## 1132 Female  24 157.7921     65                            yes
## 1133   Male  37 174.6055     83                            yes
## 1134   Male  34 184.1151     92                            yes
## 1135 Female  21 151.7998     65                            yes
## 1136 Female  22 148.3284     63                            yes
## 1137   Male  20 175.8972     88                            yes
## 1138 Female  19 156.2434     70                            yes
## 1139 Female  21 154.7066     67                            yes
## 1140   Male  22 179.2435     90                            yes
## 1141   Male  22 178.4555     90                            yes
## 1142 Female  23 170.0216     80                            yes
## 1143   Male  23 167.2101     81                            yes
## 1144   Male  24 170.0000     85                            yes
## 1145   Male  24 172.1348     84                            yes
## 1146 Female  27 170.0000     78                            yes
## 1147   Male  31 180.3129     91                            yes
## 1148 Female  24 170.0020     80                            yes
## 1149 Female  26 170.0000     78                            yes
## 1150   Male  18 171.3599     83                            yes
## 1151   Male  19 166.2728     77                            yes
## 1152   Male  25 183.7399     96                            yes
## 1153   Male  23 180.8270     91                            yes
## 1154   Male  24 171.4508     85                            yes
## 1155   Male  23 179.3451     90                            yes
## 1156 Female  24 170.0499     81                            yes
## 1157   Male  34 169.4997     84                            yes
## 1158 Female  25 168.8911     78                            yes
## 1159   Male  55 167.3394     80                            yes
## 1160   Male  35 176.9499     85                            yes
## 1161   Male  22 165.0000     80                            yes
## 1162   Male  18 166.2669     80                            yes
## 1163 Female  42 167.8610     80                            yes
## 1164   Male  21 169.4423     80                            yes
## 1165 Female  28 150.5437     64                            yes
## 1166 Female  25 150.5387     64                            yes
## 1167 Female  22 149.1441     62                            yes
## 1168 Female  21 150.9408     65                            yes
## 1169   Male  23 168.5045     81                            yes
## 1170   Male  23 172.3072     82                            yes
## 1171 Female  38 169.6954     78                            yes
## 1172 Female  38 167.6095     79                            yes
## 1173 Female  34 168.1021     77                            yes
## 1174 Female  34 165.4067     80                            yes
## 1175   Male  32 184.0708     98                            yes
## 1176   Male  33 183.6007     97                            yes
## 1177 Female  19 155.6789     72                            yes
## 1178 Female  20 158.9100     73                            yes
## 1179   Male  20 170.0627     78                            yes
## 1180   Male  48 174.3935     85                            yes
## 1181   Male  18 174.2654     85                            yes
## 1182   Male  18 175.4441     85                            yes
## 1183   Male  20 171.9342     81                            yes
## 1184 Female  34 168.2253     77                            yes
## 1185   Male  17 179.9902     95                            yes
## 1186   Male  33 170.9428     83                            yes
## 1187   Male  35 175.2456     85                            yes
## 1188   Male  36 168.5947     83                            yes
## 1189 Female  19 159.9999     74                            yes
## 1190 Female  19 155.0053     73                            yes
## 1191   Male  32 182.8092     91                            yes
## 1192   Male  23 171.3380     82                            yes
## 1193   Male  20 168.0764     80                            yes
## 1194   Male  20 170.5584     78                            yes
## 1195   Male  30 184.1852     94                            yes
## 1196   Male  27 183.4986     99                            yes
## 1197   Male  21 172.4839     82                            yes
## 1198   Male  33 168.5127     84                            yes
## 1199   Male  18 175.0097     86                            yes
## 1200   Male  32 175.7961     88                            yes
## 1201   Male  32 184.8965     99                            yes
## 1202   Male  24 178.9193     89                            yes
## 1203   Male  24 171.6677     85                            yes
## 1204 Female  19 155.0122     70                            yes
## 1205 Female  35 166.3178     80                            yes
## 1206 Female  34 167.9299     77                            yes
## 1207   Male  24 172.9177     83                            yes
## 1208   Male  40 171.9153     86                            yes
## 1209 Female  46 168.7326     80                            yes
## 1210   Male  26 177.2449    105                            yes
## 1211   Male  26 183.7117    106                            yes
## 1212   Male  31 178.4377    103                            yes
## 1213   Male  40 179.2507    102                            yes
## 1214 Female  31 155.6579     78                            yes
## 1215 Female  26 158.5547     80                            yes
## 1216 Female  44 156.9234     82                            yes
## 1217 Female  42 158.3943     82                            yes
## 1218 Female  23 162.1233     82                            yes
## 1219 Female  23 160.8400     83                            yes
## 1220   Male  24 173.3439     98                            yes
## 1221   Male  21 165.0000     88                            yes
## 1222 Female  23 165.0052     87                            yes
## 1223 Female  23 164.4161     84                            yes
## 1224 Female  37 155.9499     77                            yes
## 1225   Male  23 173.4237     95                            yes
## 1226   Male  23 177.5815     98                            yes
## 1227 Female  22 164.0426     87                            yes
## 1228 Female  18 165.0000     82                            yes
## 1229   Male  26 175.3321    108                            yes
## 1230 Female  41 155.3026     78                            yes
## 1231   Male  23 170.6525     91                            yes
## 1232 Female  38 156.0648     80                            yes
## 1233   Male  31 167.3352     90                            yes
## 1234   Male  23 166.0324     94                            yes
## 1235   Male  40 178.6318     98                            yes
## 1236   Male  23 175.7691     95                            yes
## 1237   Male  22 171.2163     99                            yes
## 1238   Male  35 178.0000    101                            yes
## 1239 Female  22 160.0000     82                            yes
## 1240 Female  23 161.0820     83                            yes
## 1241 Female  23 166.5199     83                            yes
## 1242 Female  41 154.2122     80                            yes
## 1243 Female  39 150.7867     80                            yes
## 1244   Male  26 166.0955     90                            yes
## 1245 Female  24 155.3127     78                            yes
## 1246   Male  21 178.1952    103                            yes
## 1247   Male  22 175.0000     97                            yes
## 1248 Female  23 161.5854     81                            yes
## 1249   Male  21 179.3378    106                            yes
## 1250   Male  18 185.4780    115                            yes
## 1251 Female  18 168.5633     90                            yes
## 1252 Female  18 170.6343     93                            yes
## 1253   Male  23 179.1415    105                            yes
## 1254   Male  23 175.3716    106                            yes
## 1255   Male  21 178.0503    103                            yes
## 1256   Male  22 181.9867    106                            yes
## 1257   Male  18 179.1174    109                            yes
## 1258   Male  18 182.0930    109                            yes
## 1259 Female  19 162.7812     82                            yes
## 1260 Female  23 163.2118     82                            yes
## 1261   Male  22 177.3594    105                            yes
## 1262   Male  21 193.0416    119                            yes
## 1263   Male  22 194.7406    117                            yes
## 1264 Female  38 161.0867     80                            yes
## 1265 Female  38 151.3202     75                            yes
## 1266   Male  18 173.8465     97                            yes
## 1267 Female  38 156.7915     76                            yes
## 1268 Female  44 158.7546     76                            yes
## 1269   Male  18 182.0385    108                            yes
## 1270   Male  18 179.2239    108                            yes
## 1271   Male  30 182.6970    109                            yes
## 1272 Female  18 167.0058     86                            yes
## 1273   Male  25 163.9383     91                            yes
## 1274   Male  29 168.2916     90                            yes
## 1275 Female  18 160.9321     84                            yes
## 1276   Male  21 169.0437     96                            yes
## 1277   Male  19 170.0164     99                            yes
## 1278 Female  18 160.0740     82                            yes
## 1279   Male  18 180.1848    105                            yes
## 1280   Male  26 184.4751    105                            yes
## 1281   Male  26 181.1602    106                            yes
## 1282   Male  37 178.7521    101                            yes
## 1283   Male  38 178.9109    100                            yes
## 1284 Female  30 153.3364     78                            yes
## 1285 Female  29 158.0858     80                            yes
## 1286 Female  42 164.6390     87                            yes
## 1287 Female  47 164.3786     82                            yes
## 1288 Female  23 163.4342     82                            yes
## 1289 Female  23 160.4893     82                            yes
## 1290   Male  23 165.4961     95                            yes
## 1291   Male  23 170.1986     95                            yes
## 1292   Male  23 165.0000     89                            yes
## 1293   Male  24 165.7995     90                            yes
## 1294 Female  23 163.4688     83                            yes
## 1295 Female  23 162.8168     84                            yes
## 1296 Female  38 155.7808     80                            yes
## 1297 Female  38 156.0199     80                            yes
## 1298   Male  23 175.0384     95                            yes
## 1299   Male  23 175.3081     95                            yes
## 1300 Female  21 165.0000     88                            yes
## 1301 Female  23 165.0012     88                            yes
## 1302 Female  16 165.0000     86                            yes
## 1303 Female  17 163.4832     86                            yes
## 1304   Male  29 177.0126    109                            yes
## 1305   Male  30 175.8189    109                            yes
## 1306 Female  44 159.5165     77                            yes
## 1307 Female  41 156.7756     79                            yes
## 1308   Male  23 170.2825     94                            yes
## 1309   Male  23 173.5659     93                            yes
## 1310 Female  38 162.9010     80                            yes
## 1311 Female  38 161.5385     80                            yes
## 1312   Male  32 167.1705     90                            yes
## 1313   Male  32 167.6595     90                            yes
## 1314   Male  22 169.9998     96                            yes
## 1315   Male  22 172.2785     94                            yes
## 1316   Male  36 167.0667     91                            yes
## 1317   Male  40 178.9992     98                            yes
## 1318   Male  24 176.8834     97                            yes
## 1319   Male  23 176.1008     98                            yes
## 1320   Male  35 178.0000    102                            yes
## 1321   Male  31 181.0215    105                            yes
## 1322 Female  23 160.8469     83                            yes
## 1323 Female  23 163.0357     83                            yes
## 1324 Female  23 162.8260     83                            yes
## 1325 Female  22 160.5662     82                            yes
## 1326 Female  41 156.7973     81                            yes
## 1327 Female  41 154.8403     80                            yes
## 1328   Male  29 168.1855     90                            yes
## 1329   Male  31 168.8436     90                            yes
## 1330 Female  23 157.7115     78                            yes
## 1331 Female  24 158.6751     79                            yes
## 1332   Male  17 171.0616    100                            yes
## 1333   Male  18 172.1384     99                            yes
## 1334 Female  23 162.4367     82                            yes
## 1335 Female  23 162.2787     82                            yes
## 1336   Male  19 185.5433    113                            yes
## 1337   Male  21 185.6315    118                            yes
## 1338 Female  19 168.1719     91                            yes
## 1339 Female  21 172.2884     93                            yes
## 1340   Male  23 179.9406    107                            yes
## 1341   Male  22 181.9875    106                            yes
## 1342   Male  21 179.0172    105                            yes
## 1343   Male  22 178.3782    105                            yes
## 1344   Male  18 178.3906    109                            yes
## 1345   Male  18 184.4218    109                            yes
## 1346 Female  19 163.1662     82                            yes
## 1347 Female  18 164.9553     82                            yes
## 1348   Male  22 175.4711    105                            yes
## 1349   Male  22 176.2515    105                            yes
## 1350   Male  20 194.2725    122                            yes
## 1351   Male  20 197.5663    121                            yes
## 1352 Female  39 158.6301     80                            yes
## 1353 Female  38 159.8448     80                            yes
## 1354   Male  19 170.3098     98                            yes
## 1355   Male  17 170.6996    100                            yes
## 1356 Female  39 152.6472     75                            yes
## 1357 Female  39 150.1993     77                            yes
## 1358   Male  18 178.4402    108                            yes
## 1359   Male  18 179.2687    108                            yes
## 1360   Male  30 181.4052    109                            yes
## 1361   Male  31 178.9421    110                            yes
## 1362 Female  18 168.6904     90                            yes
## 1363 Female  18 170.3259     91                            yes
## 1364   Male  31 166.5798     90                            yes
## 1365   Male  29 166.6710     89                            yes
## 1366 Female  18 165.0000     84                            yes
## 1367 Female  18 164.9439     85                            yes
## 1368   Male  21 170.2002     98                            yes
## 1369   Male  21 169.3820    100                            yes
## 1370 Female  18 162.2999     82                            yes
## 1371 Female  18 163.3675     82                            yes
## 1372   Male  20 183.6669    105                            yes
## 1373   Male  21 179.8354    104                            yes
## 1374   Male  26 182.4432    105                            yes
## 1375   Male  26 183.0384    105                            yes
## 1376   Male  26 182.9907    105                            yes
## 1377   Male  26 182.3755    106                            yes
## 1378   Male  30 183.4842    105                            yes
## 1379   Male  33 178.3901    104                            yes
## 1380   Male  39 178.2067    104                            yes
## 1381   Male  40 178.1032     96                            yes
## 1382 Female  33 155.7943     78                            yes
## 1383 Female  26 156.0258     78                            yes
## 1384 Female  23 159.6586     81                            yes
## 1385 Female  25 162.0930     82                            yes
## 1386 Female  43 157.1417     82                            yes
## 1387 Female  44 158.4322     81                            yes
## 1388 Female  43 158.2523     82                            yes
## 1389 Female  40 157.2791     80                            yes
## 1390 Female  23 162.7908     82                            yes
## 1391 Female  23 162.0938     82                            yes
## 1392 Female  23 161.3119     83                            yes
## 1393 Female  23 162.6860     82                            yes
## 1394   Male  23 172.8183     98                            yes
## 1395   Male  23 173.2694     98                            yes
## 1396 Female  21 165.0000     88                            yes
## 1397 Female  21 165.0000     88                            yes
## 1398 Female  23 166.9130     86                            yes
## 1399 Female  23 166.9136     86                            yes
## 1400 Female  23 161.1058     84                            yes
## 1401 Female  23 164.9736     84                            yes
## 1402 Female  39 153.2643     78                            yes
## 1403 Female  37 152.4293     76                            yes
## 1404   Male  23 170.1634     95                            yes
## 1405   Male  23 172.3921     95                            yes
## 1406   Male  23 176.9484     96                            yes
## 1407   Male  24 177.7416     98                            yes
## 1408 Female  22 164.4560     88                            yes
## 1409 Female  21 164.1149     88                            yes
## 1410 Female  18 164.2892     82                            yes
## 1411 Female  19 165.0000     82                            yes
## 1412   Male  26 177.7251    106                            yes
## 1413   Male  26 181.4696    108                            yes
## 1414 Female  40 155.9005     78                            yes
## 1415 Female  38 155.6028     78                            yes
## 1416   Male  24 165.3751     91                            yes
## 1417   Male  23 168.0171     91                            yes
## 1418 Female  38 155.2648     80                            yes
## 1419 Female  38 156.0215     80                            yes
## 1420   Male  32 167.2959     90                            yes
## 1421   Male  30 168.0058     90                            yes
## 1422   Male  22 166.4752     94                            yes
## 1423   Male  22 166.8553     94                            yes
## 1424   Male  40 178.5286    100                            yes
## 1425   Male  37 178.0725     99                            yes
## 1426   Male  23 175.1046     95                            yes
## 1427   Male  23 175.1365     95                            yes
## 1428   Male  22 171.7262     99                            yes
## 1429   Male  22 174.1393     98                            yes
## 1430   Male  37 179.2100    101                            yes
## 1431   Male  38 178.5957     99                            yes
## 1432 Female  22 160.9068     84                            yes
## 1433 Female  23 160.3963     82                            yes
## 1434 Female  22 160.5495     83                            yes
## 1435 Female  22 160.7182     82                            yes
## 1436 Female  23 166.1715     83                            yes
## 1437 Female  23 165.5742     82                            yes
## 1438 Female  39 154.9257     80                            yes
## 1439 Female  41 154.9748     80                            yes
## 1440 Female  41 152.9060     80                            yes
## 1441 Female  39 151.7248     80                            yes
## 1442   Male  26 165.7310     90                            yes
## 1443   Male  27 167.3287     90                            yes
## 1444 Female  24 158.1527     78                            yes
## 1445 Female  24 156.2724     81                            yes
## 1446   Male  21 178.1251    103                            yes
## 1447   Male  22 177.5584    104                            yes
## 1448   Male  23 174.6645     97                            yes
## 1449   Male  22 174.1353     97                            yes
## 1450 Female  23 157.1812     79                            yes
## 1451 Female  24 158.9027     81                            yes
## 1452   Male  21 180.3245    106                            yes
## 1453   Male  21 179.2646    106                            yes
## 1454   Male  22 187.1990    116                            yes
## 1455   Male  18 185.9056    111                            yes
## 1456 Female  18 169.2242     90                            yes
## 1457 Female  18 168.3000     91                            yes
## 1458 Female  20 173.8397     94                            yes
## 1459 Female  18 169.4969     93                            yes
## 1460   Male  22 178.5718    105                            yes
## 1461   Male  23 174.2500    105                            yes
## 1462   Male  22 180.3132    106                            yes
## 1463   Male  23 177.4644    106                            yes
## 1464   Male  21 178.2269    105                            yes
## 1465   Male  21 178.0791    103                            yes
## 1466   Male  22 179.0151    106                            yes
## 1467   Male  22 181.8641    105                            yes
## 1468   Male  18 180.6827    109                            yes
## 1469   Male  18 181.1189    109                            yes
## 1470   Male  18 181.1738    109                            yes
## 1471   Male  18 179.9779    109                            yes
## 1472 Female  19 163.2605     82                            yes
## 1473 Female  19 162.3377     83                            yes
## 1474 Female  23 161.8686     81                            yes
## 1475 Female  23 161.6085     83                            yes
## 1476   Male  22 176.9328    105                            yes
## 1477   Male  22 180.7029    106                            yes
## 1478   Male  21 188.2533    117                            yes
## 1479   Male  20 187.9144    113                            yes
## 1480   Male  22 193.1263    118                            yes
## 1481   Male  21 186.1358    115                            yes
## 1482 Female  39 156.7131     80                            yes
## 1483 Female  38 156.5366     80                            yes
## 1484 Female  38 151.6007     77                            yes
## 1485 Female  37 154.9812     76                            yes
## 1486   Male  19 171.4143     97                            yes
## 1487   Male  17 172.3191     97                            yes
## 1488 Female  39 156.2889     77                            yes
## 1489 Female  37 150.2609     75                            yes
## 1490 Female  41 154.4937     77                            yes
## 1491 Female  44 159.2316     77                            yes
## 1492   Male  18 178.7733    108                            yes
## 1493   Male  18 178.2722    108                            yes
## 1494   Male  18 179.7523    108                            yes
## 1495   Male  18 180.3527    108                            yes
## 1496   Male  29 180.1224    108                            yes
## 1497   Male  28 182.9239    107                            yes
## 1498 Female  18 169.2913     90                            yes
## 1499 Female  18 166.8555     86                            yes
## 1500   Male  23 165.2971     93                            yes
## 1501   Male  24 166.1277     91                            yes
## 1502   Male  29 164.1784     89                            yes
## 1503   Male  28 167.3767     90                            yes
## 1504 Female  18 161.7192     83                            yes
## 1505 Female  18 160.2129     82                            yes
## 1506   Male  21 170.1413     97                            yes
## 1507   Male  21 170.9731     95                            yes
## 1508   Male  20 169.8829     99                            yes
## 1509   Male  21 170.5304    100                            yes
## 1510 Female  19 161.2910     82                            yes
## 1511 Female  19 160.5469     82                            yes
## 1512   Male  19 180.4160    104                            yes
## 1513   Male  20 178.5062    104                            yes
## 1514   Male  30 175.5926    112                            yes
## 1515   Male  25 178.7802    115                            yes
## 1516   Male  37 170.4877    108                            yes
## 1517   Male  33 169.5347    103                            yes
## 1518   Male  28 190.8608    129                            yes
## 1519   Male  30 181.9296    122                            yes
## 1520   Male  27 177.3259    118                            yes
## 1521   Male  34 177.4647    120                            yes
## 1522   Male  26 177.3664    116                            yes
## 1523   Male  28 179.3476    113                            yes
## 1524   Male  28 182.5590    121                            yes
## 1525   Male  25 188.5543    121                            yes
## 1526   Male  31 175.0000    120                            yes
## 1527   Male  31 187.4070    129                            yes
## 1528   Male  25 175.5967    112                            yes
## 1529   Male  25 175.7069    117                            yes
## 1530   Male  41 175.0000    117                            yes
## 1531   Male  28 170.4028    102                            yes
## 1532   Male  23 184.9003    121                            yes
## 1533   Male  23 184.1989    122                            yes
## 1534   Male  24 161.3491     98                            yes
## 1535   Male  20 164.7821    107                            yes
## 1536   Male  30 175.8340    112                            yes
## 1537   Male  25 175.8398    112                            yes
## 1538   Male  31 167.0774    102                            yes
## 1539   Male  29 166.5585     99                            yes
## 1540   Male  31 191.4186    130                            yes
## 1541   Male  30 189.9588    124                            yes
## 1542   Male  32 175.0000    118                            yes
## 1543   Male  37 175.0000    119                            yes
## 1544   Male  22 177.3664    116                            yes
## 1545   Male  24 179.2998    116                            yes
## 1546   Male  24 182.5590    121                            yes
## 1547   Male  25 182.7279    121                            yes
## 1548   Male  32 177.5416    121                            yes
## 1549   Male  31 176.6975    118                            yes
## 1550   Male  23 175.4218    117                            yes
## 1551   Male  23 175.4996    119                            yes
## 1552   Male  41 174.8103    108                            yes
## 1553   Male  35 173.3250    104                            yes
## 1554   Male  22 184.9950    122                            yes
## 1555   Male  22 184.9601    122                            yes
## 1556   Male  24 160.6066    100                            yes
## 1557   Male  20 161.1434    103                            yes
## 1558   Male  29 176.2887    114                            yes
## 1559   Male  27 175.5938    112                            yes
## 1560   Male  26 178.7052    115                            yes
## 1561   Male  25 176.5258    114                            yes
## 1562   Male  31 172.6279    111                            yes
## 1563   Male  41 173.5851    110                            yes
## 1564   Male  34 169.9793    104                            yes
## 1565   Male  30 170.3202    103                            yes
## 1566   Male  31 190.6821    129                            yes
## 1567   Male  29 191.0987    130                            yes
## 1568   Male  31 178.4049    121                            yes
## 1569   Male  31 178.3914    121                            yes
## 1570   Male  27 186.3883    120                            yes
## 1571   Male  27 181.2259    118                            yes
## 1572   Male  37 175.0150    118                            yes
## 1573   Male  29 181.5347    120                            yes
## 1574   Male  26 176.7077    114                            yes
## 1575   Male  25 176.2461    116                            yes
## 1576   Male  30 177.9049    112                            yes
## 1577   Male  27 178.0731    113                            yes
## 1578   Male  26 187.2517    121                            yes
## 1579   Male  28 180.1224    119                            yes
## 1580   Male  23 187.6898    121                            yes
## 1581   Male  24 177.5580    121                            yes
## 1582   Male  32 176.5690    120                            yes
## 1583   Male  30 175.9772    118                            yes
## 1584   Male  31 182.3545    126                            yes
## 1585   Male  31 186.8923    125                            yes
## 1586   Male  25 177.1510    113                            yes
## 1587   Male  26 177.2190    114                            yes
## 1588   Male  25 185.8265    118                            yes
## 1589   Male  25 183.0596    118                            yes
## 1590   Male  39 176.5836    119                            yes
## 1591   Male  39 177.0278    117                            yes
## 1592   Male  26 167.3491    104                            yes
## 1593   Male  32 170.3346    103                            yes
## 1594   Male  23 184.2906    121                            yes
## 1595   Male  24 177.9547    119                            yes
## 1596   Male  24 187.3368    122                            yes
## 1597   Male  23 175.5902    120                            yes
## 1598   Male  24 161.7655    101                            yes
## 1599   Male  31 164.4517    100                            yes
## 1600   Male  20 170.1284    105                            yes
## 1601   Male  25 165.8910    105                            yes
## 1602   Male  30 175.9324    112                            yes
## 1603   Male  30 175.8382    112                            yes
## 1604   Male  24 162.2297    100                            yes
## 1605   Male  25 162.3278     98                            yes
## 1606   Male  30 191.8859    130                            yes
## 1607   Male  30 191.3252    129                            yes
## 1608   Male  37 175.0000    118                            yes
## 1609   Male  39 175.0000    119                            yes
## 1610   Male  23 178.4994    114                            yes
## 1611   Male  23 179.2533    116                            yes
## 1612   Male  25 182.9757    121                            yes
## 1613   Male  25 179.6415    121                            yes
## 1614   Male  32 175.0000    120                            yes
## 1615   Male  32 176.2389    119                            yes
## 1616   Male  23 182.5718    121                            yes
## 1617   Male  23 183.9699    120                            yes
## 1618   Male  41 174.9405    110                            yes
## 1619   Male  41 175.0000    116                            yes
## 1620   Male  22 184.9998    122                            yes
## 1621   Male  22 184.9980    123                            yes
## 1622   Male  24 160.7939    101                            yes
## 1623   Male  24 160.3226    100                            yes
## 1624   Male  30 177.0663    112                            yes
## 1625   Male  29 175.8038    112                            yes
## 1626   Male  25 178.6997    115                            yes
## 1627   Male  25 177.1837    115                            yes
## 1628   Male  40 172.2396    109                            yes
## 1629   Male  34 170.1387    107                            yes
## 1630   Male  33 169.7421    103                            yes
## 1631   Male  30 169.6365    103                            yes
## 1632   Male  30 190.9198    130                            yes
## 1633   Male  29 190.9105    130                            yes
## 1634   Male  30 180.1368    121                            yes
## 1635   Male  30 186.0292    124                            yes
## 1636   Male  27 181.9535    118                            yes
## 1637   Male  27 179.3174    118                            yes
## 1638   Male  33 175.0150    118                            yes
## 1639   Male  32 175.4956    120                            yes
## 1640   Male  26 177.3115    115                            yes
## 1641   Male  26 177.2731    116                            yes
## 1642   Male  30 178.7933    113                            yes
## 1643   Male  27 178.5277    113                            yes
## 1644   Male  28 181.7572    121                            yes
## 1645   Male  27 184.3420    120                            yes
## 1646   Male  25 187.4519    121                            yes
## 1647   Male  25 179.6332    121                            yes
## 1648   Male  30 175.6221    119                            yes
## 1649   Male  31 175.7132    119                            yes
## 1650   Male  31 188.9104    129                            yes
## 1651   Male  31 186.9323    128                            yes
## 1652   Male  25 175.7154    112                            yes
## 1653   Male  25 176.4484    113                            yes
## 1654   Male  24 177.4775    117                            yes
## 1655   Male  25 176.9933    118                            yes
## 1656   Male  40 176.0175    118                            yes
## 1657   Male  40 176.3029    117                            yes
## 1658   Male  27 167.9515    103                            yes
## 1659   Male  30 169.9354    100                            yes
## 1660   Male  23 184.9307    122                            yes
## 1661   Male  24 186.7410    122                            yes
## 1662   Male  23 186.7140    122                            yes
## 1663   Male  23 184.8553    121                            yes
## 1664   Male  24 161.9810     99                            yes
## 1665   Male  27 164.7807    100                            yes
## 1666   Male  20 161.9128    104                            yes
## 1667   Male  23 164.1870    104                            yes
## 1668   Male  28 178.7379    112                            yes
## 1669   Male  30 175.8355    112                            yes
## 1670   Male  25 176.4140    113                            yes
## 1671   Male  25 176.7186    112                            yes
## 1672   Male  32 167.7820    102                            yes
## 1673   Male  31 166.8478    101                            yes
## 1674   Male  28 168.5462    100                            yes
## 1675   Male  28 169.4642    100                            yes
## 1676   Male  31 188.6109    129                            yes
## 1677   Male  31 191.5000    130                            yes
## 1678   Male  30 184.1908    124                            yes
## 1679   Male  31 186.8127    123                            yes
## 1680   Male  32 175.1688    119                            yes
## 1681   Male  31 175.5333    118                            yes
## 1682   Male  38 175.4217    118                            yes
## 1683   Male  38 176.0710    119                            yes
## 1684   Male  22 175.5938    116                            yes
## 1685   Male  23 176.5137    117                            yes
## 1686   Male  25 178.8239    115                            yes
## 1687   Male  24 176.7121    116                            yes
## 1688   Male  24 184.0039    121                            yes
## 1689   Male  24 182.4901    121                            yes
## 1690   Male  25 182.8391    121                            yes
## 1691   Male  25 182.9529    121                            yes
## 1692   Male  31 177.9325    121                            yes
## 1693   Male  31 178.1139    121                            yes
## 1694   Male  31 176.4166    119                            yes
## 1695   Male  31 175.4796    119                            yes
## 1696   Male  25 175.6509    117                            yes
## 1697   Male  24 175.6772    117                            yes
## 1698   Male  23 175.4439    119                            yes
## 1699   Male  23 175.5142    119                            yes
## 1700   Male  40 170.6741    108                            yes
## 1701   Male  37 174.2850    106                            yes
## 1702   Male  34 168.1100    103                            yes
## 1703   Male  34 170.5682    103                            yes
## 1704   Male  23 184.9507    122                            yes
## 1705   Male  23 185.3373    122                            yes
## 1706   Male  23 184.7530    122                            yes
## 1707   Male  22 187.0340    121                            yes
## 1708   Male  24 160.7787    101                            yes
## 1709   Male  24 160.3091    100                            yes
## 1710   Male  20 162.0109    103                            yes
## 1711   Male  23 161.0647    101                            yes
## 1712   Male  29 175.8618    114                            yes
## 1713   Male  30 176.3259    113                            yes
## 1714   Male  27 176.4138    112                            yes
## 1715   Male  25 175.5960    112                            yes
## 1716   Male  26 178.3381    115                            yes
## 1717   Male  26 178.6532    115                            yes
## 1718   Male  26 176.6626    114                            yes
## 1719   Male  26 176.5464    114                            yes
## 1720   Male  30 175.8530    112                            yes
## 1721   Male  30 175.8539    112                            yes
## 1722   Male  41 174.8015    110                            yes
## 1723   Male  41 174.4974    111                            yes
## 1724   Male  30 170.1566    104                            yes
## 1725   Male  33 169.6412    103                            yes
## 1726   Male  31 168.0489    102                            yes
## 1727   Male  30 170.3317    103                            yes
## 1728   Male  31 187.7732    127                            yes
## 1729   Male  31 190.9639    129                            yes
## 1730   Male  30 190.9188    129                            yes
## 1731   Male  31 191.0672    129                            yes
## 1732   Male  31 177.9136    121                            yes
## 1733   Male  32 176.7485    120                            yes
## 1734   Male  31 178.3953    121                            yes
## 1735   Male  31 176.7140    120                            yes
## 1736   Male  27 181.6197    120                            yes
## 1737   Male  27 183.9941    120                            yes
## 1738   Male  26 184.8420    118                            yes
## 1739   Male  26 183.0317    118                            yes
## 1740   Male  38 175.0085    118                            yes
## 1741   Male  38 176.3582    118                            yes
## 1742   Male  28 181.6547    121                            yes
## 1743   Male  28 180.5445    119                            yes
## 1744   Male  25 177.0124    114                            yes
## 1745   Male  26 177.2740    114                            yes
## 1746   Male  26 176.3215    115                            yes
## 1747   Male  26 176.6547    115                            yes
## 1748   Male  30 177.3181    112                            yes
## 1749   Male  30 176.0030    112                            yes
## 1750   Male  27 178.0089    113                            yes
## 1751   Male  28 176.6946    113                            yes
## 1752   Male  26 188.5119    121                            yes
## 1753   Male  27 182.8276    121                            yes
## 1754   Male  28 180.6227    120                            yes
## 1755   Male  27 181.2919    120                            yes
## 1756   Male  23 185.9717    121                            yes
## 1757   Male  23 186.5160    122                            yes
## 1758   Male  24 178.3609    121                            yes
## 1759   Male  24 179.4827    121                            yes
## 1760   Male  31 175.9647    120                            yes
## 1761   Male  31 177.3521    120                            yes
## 1762   Male  32 175.3327    118                            yes
## 1763   Male  30 176.1068    118                            yes
## 1764   Male  31 184.8845    125                            yes
## 1765   Male  31 184.2812    126                            yes
## 1766   Male  31 182.5449    125                            yes
## 1767   Male  31 186.1980    126                            yes
## 1768   Male  25 176.3987    113                            yes
## 1769   Male  25 176.1519    113                            yes
## 1770   Male  25 177.2045    114                            yes
## 1771   Male  25 177.1817    114                            yes
## 1772   Male  26 179.8580    118                            yes
## 1773   Male  25 178.8586    118                            yes
## 1774   Male  25 180.3207    118                            yes
## 1775   Male  25 183.6592    118                            yes
## 1776   Male  37 176.2921    118                            yes
## 1777   Male  38 175.2863    119                            yes
## 1778   Male  39 176.8235    118                            yes
## 1779   Male  38 176.6888    118                            yes
## 1780   Male  25 160.3501    101                            yes
## 1781   Male  27 169.0262    103                            yes
## 1782   Male  34 171.2905    103                            yes
## 1783   Male  33 169.5735    103                            yes
## 1784   Male  24 182.9971    121                            yes
## 1785   Male  23 184.6290    121                            yes
## 1786   Male  24 177.4983    119                            yes
## 1787   Male  25 178.9680    118                            yes
## 1788   Male  25 185.2664    121                            yes
## 1789   Male  24 187.2561    121                            yes
## 1790   Male  23 181.9550    121                            yes
## 1791   Male  23 181.5514    120                            yes
## 1792   Male  24 161.4075    100                            yes
## 1793   Male  24 160.9418    100                            yes
## 1794   Male  31 165.0189    101                            yes
## 1795   Male  31 165.3876    103                            yes
## 1796   Male  20 165.7132    106                            yes
## 1797   Male  21 164.4751    101                            yes
## 1798   Male  26 166.0761    104                            yes
## 1799   Male  27 169.1510    103                            yes
## 1800 Female  26 161.1462    102                            yes
## 1801 Female  26 158.4782    105                            yes
## 1802 Female  18 179.2378    138                            yes
## 1803 Female  18 180.2257    150                            yes
## 1804 Female  26 165.6320    112                            yes
## 1805 Female  26 160.0762    105                            yes
## 1806 Female  26 167.8658    105                            yes
## 1807 Female  26 167.8201    110                            yes
## 1808 Female  22 165.5630    121                            yes
## 1809 Female  21 169.4952    134                            yes
## 1810 Female  26 162.2771    110                            yes
## 1811 Female  26 158.3889    111                            yes
## 1812 Female  21 172.9045    132                            yes
## 1813 Female  23 166.4622    114                            yes
## 1814 Female  21 174.7773    128                            yes
## 1815 Female  21 173.0113    152                            yes
## 1816 Female  19 174.6652    134                            yes
## 1817 Female  24 171.9365    115                            yes
## 1818 Female  26 163.2377    112                            yes
## 1819 Female  26 164.2572    112                            yes
## 1820 Female  26 165.4875    105                            yes
## 1821 Female  26 162.7567    107                            yes
## 1822 Female  21 173.6276    131                            yes
## 1823 Female  24 173.7056    133                            yes
## 1824 Female  26 158.0968    102                            yes
## 1825 Female  26 160.7128    103                            yes
## 1826 Female  18 182.1566    142                            yes
## 1827 Female  18 182.7730    153                            yes
## 1828 Female  26 165.6504    112                            yes
## 1829 Female  26 163.7725    111                            yes
## 1830 Female  26 166.9701    105                            yes
## 1831 Female  26 166.8709    105                            yes
## 1832 Female  21 166.8642    125                            yes
## 1833 Female  21 169.0614    130                            yes
## 1834 Female  26 162.2418    111                            yes
## 1835 Female  26 164.3332    111                            yes
## 1836 Female  22 173.3383    136                            yes
## 1837 Female  21 174.8313    134                            yes
## 1838 Female  21 181.2963    139                            yes
## 1839 Female  21 180.7340    156                            yes
## 1840 Female  18 174.5644    134                            yes
## 1841 Female  21 175.3266    134                            yes
## 1842 Female  26 163.2193    112                            yes
## 1843 Female  26 164.1098    112                            yes
## 1844 Female  26 164.0741    105                            yes
## 1845 Female  26 161.8573    105                            yes
## 1846 Female  23 175.7442    133                            yes
## 1847 Female  20 176.3343    134                            yes
## 1848 Female  26 161.0086    102                            yes
## 1849 Female  26 166.4463    103                            yes
## 1850 Female  26 160.2025    105                            yes
## 1851 Female  26 163.2896    105                            yes
## 1852 Female  18 177.1043    137                            yes
## 1853 Female  22 178.9555    138                            yes
## 1854 Female  18 180.1746    141                            yes
## 1855 Female  20 178.7195    152                            yes
## 1856 Female  26 164.4141    112                            yes
## 1857 Female  26 164.3355    112                            yes
## 1858 Female  26 162.3707    105                            yes
## 1859 Female  26 161.0636    105                            yes
## 1860 Female  26 162.9491    105                            yes
## 1861 Female  25 168.4768    105                            yes
## 1862 Female  26 166.4940    111                            yes
## 1863 Female  26 165.5646    110                            yes
## 1864 Female  19 166.6194    125                            yes
## 1865 Female  21 170.7508    122                            yes
## 1866 Female  22 175.4174    134                            yes
## 1867 Female  21 171.4193    132                            yes
## 1868 Female  26 162.4390    110                            yes
## 1869 Female  26 163.8836    111                            yes
## 1870 Female  26 162.1245    111                            yes
## 1871 Female  26 162.3514    110                            yes
## 1872 Female  21 173.6215    132                            yes
## 1873 Female  22 173.2951    133                            yes
## 1874 Female  24 169.1350    114                            yes
## 1875 Female  24 163.5062    113                            yes
## 1876 Female  18 174.6061    128                            yes
## 1877 Female  20 174.6529    129                            yes
## 1878 Female  21 174.6516    144                            yes
## 1879 Female  21 175.1118    149                            yes
## 1880 Female  19 174.1014    133                            yes
## 1881 Female  22 174.8533    134                            yes
## 1882 Female  24 169.4726    113                            yes
## 1883 Female  26 167.4515    113                            yes
## 1884 Female  26 163.1332    112                            yes
## 1885 Female  26 164.1918    112                            yes
## 1886 Female  26 164.0125    112                            yes
## 1887 Female  26 164.9178    112                            yes
## 1888 Female  26 160.3404    105                            yes
## 1889 Female  26 164.4199    105                            yes
## 1890 Female  26 162.8909    107                            yes
## 1891 Female  26 162.8019    108                            yes
## 1892 Female  21 171.8180    133                            yes
## 1893 Female  21 170.8581    131                            yes
## 1894 Female  23 172.4983    133                            yes
## 1895 Female  23 173.9991    133                            yes
## 1896 Female  26 156.8543    102                            yes
## 1897 Female  26 157.9893    102                            yes
## 1898 Female  20 178.2714    155                            yes
## 1899 Female  19 179.3824    161                            yes
## 1900 Female  26 165.9557    112                            yes
## 1901 Female  26 165.7820    112                            yes
## 1902 Female  26 168.4082    105                            yes
## 1903 Female  25 168.3950    105                            yes
## 1904 Female  19 171.6521    128                            yes
## 1905 Female  20 168.0762    125                            yes
## 1906 Female  26 162.3303    111                            yes
## 1907 Female  26 163.1856    111                            yes
## 1908 Female  22 174.7479    137                            yes
## 1909 Female  21 178.2453    138                            yes
## 1910 Female  22 180.9871    152                            yes
## 1911 Female  22 180.3677    161                            yes
## 1912 Female  18 174.5602    134                            yes
## 1913 Female  20 175.1038    134                            yes
## 1914 Female  26 163.1547    112                            yes
## 1915 Female  26 163.5905    112                            yes
## 1916 Female  26 161.6975    105                            yes
## 1917 Female  26 162.7880    105                            yes
## 1918 Female  22 176.4160    134                            yes
## 1919 Female  21 176.3847    134                            yes
## 1920 Female  26 160.8808    102                            yes
## 1921 Female  26 161.0488    102                            yes
## 1922 Female  26 162.1231    105                            yes
## 1923 Female  26 164.2392    105                            yes
## 1924 Female  19 180.1983    138                            yes
## 1925 Female  22 178.7614    138                            yes
## 1926 Female  20 180.1478    151                            yes
## 1927 Female  18 180.7576    153                            yes
## 1928 Female  26 165.0125    112                            yes
## 1929 Female  26 165.2674    112                            yes
## 1930 Female  26 166.3632    105                            yes
## 1931 Female  26 162.7818    105                            yes
## 1932 Female  26 166.8770    105                            yes
## 1933 Female  26 164.2098    105                            yes
## 1934 Female  26 165.7570    110                            yes
## 1935 Female  26 164.3111    110                            yes
## 1936 Female  21 167.5562    122                            yes
## 1937 Female  23 166.1415    121                            yes
## 1938 Female  21 171.3133    134                            yes
## 1939 Female  21 171.9900    134                            yes
## 1940 Female  26 162.2701    110                            yes
## 1941 Female  26 162.2468    110                            yes
## 1942 Female  26 161.8867    111                            yes
## 1943 Female  26 160.0905    110                            yes
## 1944 Female  21 173.0636    132                            yes
## 1945 Female  21 172.9719    132                            yes
## 1946 Female  23 167.7672    114                            yes
## 1947 Female  24 163.7524    114                            yes
## 1948 Female  21 173.8717    128                            yes
## 1949 Female  21 174.1193    129                            yes
## 1950 Female  20 179.2833    152                            yes
## 1951 Female  20 181.0427    152                            yes
## 1952 Female  19 174.3589    133                            yes
## 1953 Female  20 174.7962    134                            yes
## 1954 Female  24 171.1460    113                            yes
## 1955 Female  25 168.5482    113                            yes
## 1956 Female  26 163.9251    112                            yes
## 1957 Female  26 165.4784    112                            yes
## 1958 Female  26 164.1209    112                            yes
## 1959 Female  26 164.3167    112                            yes
## 1960 Female  26 163.0730    105                            yes
## 1961 Female  26 164.9867    105                            yes
## 1962 Female  26 161.3574    107                            yes
## 1963 Female  26 162.7532    107                            yes
## 1964 Female  21 172.6606    132                            yes
## 1965 Female  21 172.1476    131                            yes
## 1966 Female  24 174.2901    133                            yes
## 1967 Female  24 173.7313    133                            yes
## 1968 Female  26 162.4140    102                            yes
## 1969 Female  26 164.4078    102                            yes
## 1970 Female  26 159.2529    103                            yes
## 1971 Female  26 160.7734    102                            yes
## 1972 Female  19 181.7271    142                            yes
## 1973 Female  18 180.8765    140                            yes
## 1974 Female  20 181.7231    152                            yes
## 1975 Female  18 181.9728    151                            yes
## 1976 Female  26 165.6465    112                            yes
## 1977 Female  26 164.8143    112                            yes
## 1978 Female  26 162.2703    111                            yes
## 1979 Female  26 164.0606    111                            yes
## 1980 Female  25 168.3502    105                            yes
## 1981 Female  26 166.9039    105                            yes
## 1982 Female  25 167.3665    105                            yes
## 1983 Female  26 166.8931    105                            yes
## 1984 Female  21 170.0996    126                            yes
## 1985 Female  21 173.4092    125                            yes
## 1986 Female  21 170.8291    131                            yes
## 1987 Female  21 171.6497    131                            yes
## 1988 Female  26 162.4950    111                            yes
## 1989 Female  26 159.4776    111                            yes
## 1990 Female  26 162.6503    111                            yes
## 1991 Female  26 162.4576    111                            yes
## 1992 Female  22 172.9099    135                            yes
## 1993 Female  22 173.5810    135                            yes
## 1994 Female  21 174.8524    134                            yes
## 1995 Female  21 174.8951    134                            yes
## 1996 Female  20 177.7971    138                            yes
## 1997 Female  21 173.9950    136                            yes
## 1998 Female  20 181.6868    154                            yes
## 1999 Female  21 180.0200    155                            yes
## 2000 Female  21 174.6470    134                            yes
## 2001 Female  19 175.9091    134                            yes
## 2002 Female  21 175.2531    134                            yes
## 2003 Female  21 176.1773    134                            yes
## 2004 Female  26 163.3195    112                            yes
## 2005 Female  26 163.3945    112                            yes
## 2006 Female  26 164.1601    112                            yes
## 2007 Female  26 164.1132    112                            yes
## 2008 Female  26 163.8218    105                            yes
## 2009 Female  26 162.7483    105                            yes
## 2010 Female  26 161.0225    105                            yes
## 2011 Female  26 161.7390    105                            yes
## 2012 Female  23 174.4319    133                            yes
## 2013 Female  23 175.5467    133                            yes
## 2014 Female  19 174.6416    134                            yes
## 2015 Female  19 174.6411    134                            yes
## 2016 Female  26 161.1452    102                            yes
## 2017 Female  26 159.6813    102                            yes
## 2018 Female  26 161.0126    103                            yes
## 2019 Female  26 162.3113    103                            yes
## 2020 Female  26 161.8348    105                            yes
## 2021 Female  26 160.9401    105                            yes
## 2022 Female  26 162.1671    105                            yes
## 2023 Female  26 161.4484    105                            yes
## 2024 Female  19 178.9143    138                            yes
## 2025 Female  20 177.4207    138                            yes
## 2026 Female  21 179.2933    138                            yes
## 2027 Female  22 175.8959    138                            yes
## 2028 Female  18 180.7406    142                            yes
## 2029 Female  19 175.0910    143                            yes
## 2030 Female  20 180.5803    153                            yes
## 2031 Female  21 179.6538    152                            yes
## 2032 Female  26 163.4894    112                            yes
## 2033 Female  26 163.9524    112                            yes
## 2034 Female  26 164.3017    112                            yes
## 2035 Female  26 164.1849    112                            yes
## 2036 Female  26 162.1167    105                            yes
## 2037 Female  26 163.8075    105                            yes
## 2038 Female  26 160.9370    105                            yes
## 2039 Female  26 160.8283    105                            yes
## 2040 Female  26 162.9442    105                            yes
## 2041 Female  26 162.9225    105                            yes
## 2042 Female  25 168.0218    105                            yes
## 2043 Female  25 168.6033    105                            yes
## 2044 Female  26 166.2978    111                            yes
## 2045 Female  26 167.5185    111                            yes
## 2046 Female  26 162.4560    110                            yes
## 2047 Female  26 162.6179    110                            yes
## 2048 Female  19 168.2594    127                            yes
## 2049 Female  19 166.9354    126                            yes
## 2050 Female  21 168.8380    122                            yes
## 2051 Female  21 169.4439    123                            yes
## 2052 Female  22 175.5476    134                            yes
## 2053 Female  22 174.8106    133                            yes
## 2054 Female  21 171.9913    132                            yes
## 2055 Female  21 172.3587    132                            yes
## 2056 Female  26 162.3812    110                            yes
## 2057 Female  26 162.4099    110                            yes
## 2058 Female  26 163.2983    111                            yes
## 2059 Female  26 164.0745    111                            yes
## 2060 Female  26 162.9727    111                            yes
## 2061 Female  26 162.4134    112                            yes
## 2062 Female  26 162.3938    110                            yes
## 2063 Female  26 159.3321    110                            yes
## 2064 Female  21 173.0333    132                            yes
## 2065 Female  21 172.1057    132                            yes
## 2066 Female  22 171.9780    132                            yes
## 2067 Female  22 169.9315    133                            yes
## 2068 Female  24 168.1394    114                            yes
## 2069 Female  24 169.7421    114                            yes
## 2070 Female  24 165.0726    114                            yes
## 2071 Female  25 166.7383    113                            yes
## 2072 Female  19 174.6277    129                            yes
## 2073 Female  18 173.5461    127                            yes
## 2074 Female  20 174.7714    128                            yes
## 2075 Female  20 171.5820    129                            yes
## 2076 Female  21 174.7987    147                            yes
## 2077 Female  20 181.7917    143                            yes
## 2078 Female  19 180.8350    151                            yes
## 2079 Female  21 173.9457    150                            yes
## 2080 Female  19 174.2062    134                            yes
## 2081 Female  18 174.1925    133                            yes
## 2082 Female  22 175.1067    134                            yes
## 2083 Female  22 174.9118    134                            yes
## 2084 Female  24 166.3341    113                            yes
## 2085 Female  25 166.8537    113                            yes
## 2086 Female  26 166.8951    112                            yes
## 2087 Female  26 166.1712    112                            yes
## 2088 Female  26 163.3442    112                            yes
## 2089 Female  26 163.3020    112                            yes
## 2090 Female  26 163.3887    112                            yes
## 2091 Female  26 164.3421    112                            yes
## 2092 Female  26 164.0535    112                            yes
## 2093 Female  26 162.6483    111                            yes
## 2094 Female  26 164.5990    112                            yes
## 2095 Female  26 164.3892    112                            yes
## 2096 Female  26 161.7817    105                            yes
## 2097 Female  26 162.6449    105                            yes
## 2098 Female  26 162.6580    105                            yes
## 2099 Female  26 160.6474    105                            yes
## 2100 Female  26 162.8855    108                            yes
## 2101 Female  26 162.8205    107                            yes
## 2102 Female  26 162.8470    107                            yes
## 2103 Female  26 162.7839    108                            yes
## 2104 Female  21 172.4268    133                            yes
## 2105 Female  22 173.2383    133                            yes
## 2106 Female  21 172.6920    131                            yes
## 2107 Female  21 171.0730    131                            yes
## 2108 Female  22 174.8584    134                            yes
## 2109 Female  23 175.2206    134                            yes
## 2110 Female  24 173.9450    133                            yes
## 2111 Female  24 173.8836    133                            yes
##      Frequent_consumption_of_high_caloric_food
## 1                                           no
## 2                                           no
## 3                                           no
## 4                                           no
## 5                                           no
## 6                                          yes
## 7                                          yes
## 8                                           no
## 9                                          yes
## 10                                         yes
## 11                                         yes
## 12                                         yes
## 13                                          no
## 14                                         yes
## 15                                         yes
## 16                                          no
## 17                                         yes
## 18                                         yes
## 19                                         yes
## 20                                          no
## 21                                          no
## 22                                         yes
## 23                                         yes
## 24                                         yes
## 25                                         yes
## 26                                          no
## 27                                         yes
## 28                                         yes
## 29                                         yes
## 30                                         yes
## 31                                         yes
## 32                                          no
## 33                                          no
## 34                                          no
## 35                                         yes
## 36                                          no
## 37                                         yes
## 38                                         yes
## 39                                         yes
## 40                                         yes
## 41                                         yes
## 42                                          no
## 43                                         yes
## 44                                         yes
## 45                                          no
## 46                                          no
## 47                                         yes
## 48                                         yes
## 49                                          no
## 50                                         yes
## 51                                         yes
## 52                                         yes
## 53                                         yes
## 54                                          no
## 55                                          no
## 56                                          no
## 57                                         yes
## 58                                          no
## 59                                         yes
## 60                                         yes
## 61                                         yes
## 62                                         yes
## 63                                         yes
## 64                                         yes
## 65                                         yes
## 66                                         yes
## 67                                         yes
## 68                                         yes
## 69                                         yes
## 70                                          no
## 71                                         yes
## 72                                          no
## 73                                          no
## 74                                          no
## 75                                         yes
## 76                                          no
## 77                                          no
## 78                                         yes
## 79                                         yes
## 80                                          no
## 81                                          no
## 82                                         yes
## 83                                         yes
## 84                                          no
## 85                                         yes
## 86                                          no
## 87                                         yes
## 88                                         yes
## 89                                         yes
## 90                                         yes
## 91                                          no
## 92                                          no
## 93                                          no
## 94                                          no
## 95                                         yes
## 96                                          no
## 97                                          no
## 98                                          no
## 99                                          no
## 100                                         no
## 101                                        yes
## 102                                         no
## 103                                        yes
## 104                                        yes
## 105                                        yes
## 106                                        yes
## 107                                        yes
## 108                                        yes
## 109                                         no
## 110                                        yes
## 111                                        yes
## 112                                        yes
## 113                                        yes
## 114                                         no
## 115                                        yes
## 116                                        yes
## 117                                        yes
## 118                                         no
## 119                                        yes
## 120                                         no
## 121                                        yes
## 122                                        yes
## 123                                         no
## 124                                        yes
## 125                                        yes
## 126                                        yes
## 127                                        yes
## 128                                        yes
## 129                                        yes
## 130                                        yes
## 131                                        yes
## 132                                         no
## 133                                        yes
## 134                                        yes
## 135                                        yes
## 136                                        yes
## 137                                        yes
## 138                                         no
## 139                                         no
## 140                                        yes
## 141                                        yes
## 142                                        yes
## 143                                        yes
## 144                                        yes
## 145                                         no
## 146                                        yes
## 147                                         no
## 148                                         no
## 149                                        yes
## 150                                        yes
## 151                                        yes
## 152                                        yes
## 153                                        yes
## 154                                         no
## 155                                        yes
## 156                                        yes
## 157                                         no
## 158                                        yes
## 159                                         no
## 160                                        yes
## 161                                         no
## 162                                        yes
## 163                                        yes
## 164                                         no
## 165                                         no
## 166                                         no
## 167                                         no
## 168                                         no
## 169                                        yes
## 170                                        yes
## 171                                        yes
## 172                                        yes
## 173                                         no
## 174                                         no
## 175                                        yes
## 176                                        yes
## 177                                        yes
## 178                                        yes
## 179                                        yes
## 180                                        yes
## 181                                        yes
## 182                                        yes
## 183                                        yes
## 184                                        yes
## 185                                        yes
## 186                                         no
## 187                                         no
## 188                                         no
## 189                                        yes
## 190                                        yes
## 191                                        yes
## 192                                        yes
## 193                                         no
## 194                                         no
## 195                                        yes
## 196                                        yes
## 197                                         no
## 198                                        yes
## 199                                        yes
## 200                                        yes
## 201                                         no
## 202                                        yes
## 203                                        yes
## 204                                         no
## 205                                        yes
## 206                                        yes
## 207                                        yes
## 208                                         no
## 209                                        yes
## 210                                        yes
## 211                                        yes
## 212                                        yes
## 213                                         no
## 214                                        yes
## 215                                        yes
## 216                                        yes
## 217                                         no
## 218                                         no
## 219                                         no
## 220                                        yes
## 221                                         no
## 222                                        yes
## 223                                        yes
## 224                                        yes
## 225                                        yes
## 226                                         no
## 227                                        yes
## 228                                        yes
## 229                                         no
## 230                                         no
## 231                                        yes
## 232                                        yes
## 233                                         no
## 234                                         no
## 235                                        yes
## 236                                         no
## 237                                        yes
## 238                                        yes
## 239                                        yes
## 240                                        yes
## 241                                        yes
## 242                                        yes
## 243                                        yes
## 244                                        yes
## 245                                         no
## 246                                         no
## 247                                        yes
## 248                                        yes
## 249                                        yes
## 250                                        yes
## 251                                        yes
## 252                                         no
## 253                                         no
## 254                                        yes
## 255                                         no
## 256                                         no
## 257                                         no
## 258                                         no
## 259                                         no
## 260                                        yes
## 261                                        yes
## 262                                         no
## 263                                        yes
## 264                                        yes
## 265                                        yes
## 266                                        yes
## 267                                        yes
## 268                                        yes
## 269                                         no
## 270                                        yes
## 271                                        yes
## 272                                        yes
## 273                                        yes
## 274                                        yes
## 275                                         no
## 276                                        yes
## 277                                        yes
## 278                                        yes
## 279                                        yes
## 280                                         no
## 281                                        yes
## 282                                        yes
## 283                                        yes
## 284                                         no
## 285                                        yes
## 286                                        yes
## 287                                        yes
## 288                                        yes
## 289                                        yes
## 290                                         no
## 291                                        yes
## 292                                        yes
## 293                                        yes
## 294                                         no
## 295                                        yes
## 296                                         no
## 297                                        yes
## 298                                         no
## 299                                        yes
## 300                                        yes
## 301                                        yes
## 302                                        yes
## 303                                        yes
## 304                                        yes
## 305                                         no
## 306                                        yes
## 307                                        yes
## 308                                        yes
## 309                                        yes
## 310                                         no
## 311                                        yes
## 312                                        yes
## 313                                        yes
## 314                                        yes
## 315                                        yes
## 316                                        yes
## 317                                         no
## 318                                        yes
## 319                                        yes
## 320                                        yes
## 321                                        yes
## 322                                         no
## 323                                         no
## 324                                        yes
## 325                                        yes
## 326                                        yes
## 327                                        yes
## 328                                         no
## 329                                         no
## 330                                        yes
## 331                                        yes
## 332                                        yes
## 333                                        yes
## 334                                         no
## 335                                        yes
## 336                                        yes
## 337                                        yes
## 338                                        yes
## 339                                        yes
## 340                                         no
## 341                                        yes
## 342                                         no
## 343                                        yes
## 344                                         no
## 345                                        yes
## 346                                        yes
## 347                                         no
## 348                                        yes
## 349                                        yes
## 350                                        yes
## 351                                         no
## 352                                         no
## 353                                        yes
## 354                                        yes
## 355                                        yes
## 356                                        yes
## 357                                         no
## 358                                        yes
## 359                                         no
## 360                                         no
## 361                                        yes
## 362                                        yes
## 363                                         no
## 364                                        yes
## 365                                        yes
## 366                                        yes
## 367                                        yes
## 368                                        yes
## 369                                        yes
## 370                                         no
## 371                                        yes
## 372                                        yes
## 373                                        yes
## 374                                        yes
## 375                                        yes
## 376                                        yes
## 377                                         no
## 378                                         no
## 379                                        yes
## 380                                        yes
## 381                                        yes
## 382                                        yes
## 383                                         no
## 384                                         no
## 385                                        yes
## 386                                        yes
## 387                                         no
## 388                                        yes
## 389                                         no
## 390                                        yes
## 391                                        yes
## 392                                         no
## 393                                         no
## 394                                        yes
## 395                                        yes
## 396                                        yes
## 397                                         no
## 398                                        yes
## 399                                        yes
## 400                                         no
## 401                                         no
## 402                                        yes
## 403                                        yes
## 404                                         no
## 405                                        yes
## 406                                         no
## 407                                         no
## 408                                        yes
## 409                                         no
## 410                                        yes
## 411                                         no
## 412                                         no
## 413                                        yes
## 414                                         no
## 415                                        yes
## 416                                        yes
## 417                                        yes
## 418                                        yes
## 419                                        yes
## 420                                        yes
## 421                                        yes
## 422                                        yes
## 423                                        yes
## 424                                        yes
## 425                                         no
## 426                                        yes
## 427                                         no
## 428                                        yes
## 429                                        yes
## 430                                        yes
## 431                                        yes
## 432                                        yes
## 433                                        yes
## 434                                        yes
## 435                                        yes
## 436                                        yes
## 437                                        yes
## 438                                        yes
## 439                                        yes
## 440                                        yes
## 441                                        yes
## 442                                        yes
## 443                                        yes
## 444                                        yes
## 445                                        yes
## 446                                        yes
## 447                                        yes
## 448                                        yes
## 449                                        yes
## 450                                        yes
## 451                                        yes
## 452                                         no
## 453                                         no
## 454                                        yes
## 455                                        yes
## 456                                        yes
## 457                                        yes
## 458                                        yes
## 459                                        yes
## 460                                        yes
## 461                                        yes
## 462                                        yes
## 463                                        yes
## 464                                         no
## 465                                         no
## 466                                        yes
## 467                                        yes
## 468                                        yes
## 469                                        yes
## 470                                        yes
## 471                                        yes
## 472                                        yes
## 473                                         no
## 474                                        yes
## 475                                        yes
## 476                                         no
## 477                                        yes
## 478                                        yes
## 479                                        yes
## 480                                        yes
## 481                                        yes
## 482                                        yes
## 483                                        yes
## 484                                        yes
## 485                                        yes
## 486                                        yes
## 487                                        yes
## 488                                         no
## 489                                        yes
## 490                                        yes
## 491                                        yes
## 492                                        yes
## 493                                        yes
## 494                                        yes
## 495                                        yes
## 496                                        yes
## 497                                        yes
## 498                                         no
## 499                                        yes
## 500                                        yes
## 501                                        yes
## 502                                        yes
## 503                                        yes
## 504                                        yes
## 505                                        yes
## 506                                        yes
## 507                                        yes
## 508                                        yes
## 509                                        yes
## 510                                        yes
## 511                                        yes
## 512                                        yes
## 513                                        yes
## 514                                         no
## 515                                         no
## 516                                         no
## 517                                         no
## 518                                         no
## 519                                         no
## 520                                        yes
## 521                                        yes
## 522                                        yes
## 523                                        yes
## 524                                        yes
## 525                                        yes
## 526                                        yes
## 527                                        yes
## 528                                        yes
## 529                                         no
## 530                                         no
## 531                                         no
## 532                                        yes
## 533                                        yes
## 534                                        yes
## 535                                        yes
## 536                                        yes
## 537                                        yes
## 538                                        yes
## 539                                        yes
## 540                                        yes
## 541                                         no
## 542                                         no
## 543                                         no
## 544                                        yes
## 545                                        yes
## 546                                        yes
## 547                                        yes
## 548                                        yes
## 549                                        yes
## 550                                        yes
## 551                                        yes
## 552                                        yes
## 553                                        yes
## 554                                        yes
## 555                                        yes
## 556                                        yes
## 557                                        yes
## 558                                        yes
## 559                                        yes
## 560                                        yes
## 561                                        yes
## 562                                        yes
## 563                                        yes
## 564                                        yes
## 565                                        yes
## 566                                        yes
## 567                                        yes
## 568                                        yes
## 569                                        yes
## 570                                        yes
## 571                                        yes
## 572                                        yes
## 573                                        yes
## 574                                        yes
## 575                                        yes
## 576                                        yes
## 577                                         no
## 578                                         no
## 579                                         no
## 580                                        yes
## 581                                        yes
## 582                                        yes
## 583                                        yes
## 584                                        yes
## 585                                        yes
## 586                                        yes
## 587                                        yes
## 588                                        yes
## 589                                        yes
## 590                                        yes
## 591                                        yes
## 592                                        yes
## 593                                        yes
## 594                                        yes
## 595                                        yes
## 596                                        yes
## 597                                        yes
## 598                                        yes
## 599                                        yes
## 600                                        yes
## 601                                         no
## 602                                         no
## 603                                         no
## 604                                        yes
## 605                                        yes
## 606                                        yes
## 607                                        yes
## 608                                        yes
## 609                                        yes
## 610                                        yes
## 611                                        yes
## 612                                         no
## 613                                         no
## 614                                         no
## 615                                        yes
## 616                                        yes
## 617                                         no
## 618                                        yes
## 619                                        yes
## 620                                        yes
## 621                                         no
## 622                                        yes
## 623                                        yes
## 624                                        yes
## 625                                        yes
## 626                                        yes
## 627                                        yes
## 628                                        yes
## 629                                        yes
## 630                                        yes
## 631                                        yes
## 632                                        yes
## 633                                         no
## 634                                        yes
## 635                                        yes
## 636                                        yes
## 637                                        yes
## 638                                        yes
## 639                                        yes
## 640                                        yes
## 641                                         no
## 642                                        yes
## 643                                        yes
## 644                                        yes
## 645                                        yes
## 646                                        yes
## 647                                        yes
## 648                                        yes
## 649                                        yes
## 650                                         no
## 651                                         no
## 652                                         no
## 653                                         no
## 654                                         no
## 655                                         no
## 656                                        yes
## 657                                        yes
## 658                                        yes
## 659                                        yes
## 660                                        yes
## 661                                         no
## 662                                        yes
## 663                                        yes
## 664                                        yes
## 665                                        yes
## 666                                        yes
## 667                                        yes
## 668                                        yes
## 669                                        yes
## 670                                        yes
## 671                                        yes
## 672                                        yes
## 673                                        yes
## 674                                        yes
## 675                                        yes
## 676                                        yes
## 677                                        yes
## 678                                         no
## 679                                         no
## 680                                        yes
## 681                                        yes
## 682                                        yes
## 683                                        yes
## 684                                        yes
## 685                                        yes
## 686                                        yes
## 687                                        yes
## 688                                        yes
## 689                                        yes
## 690                                        yes
## 691                                        yes
## 692                                        yes
## 693                                        yes
## 694                                        yes
## 695                                        yes
## 696                                        yes
## 697                                        yes
## 698                                        yes
## 699                                        yes
## 700                                        yes
## 701                                        yes
## 702                                        yes
## 703                                        yes
## 704                                        yes
## 705                                        yes
## 706                                        yes
## 707                                        yes
## 708                                        yes
## 709                                        yes
## 710                                        yes
## 711                                        yes
## 712                                        yes
## 713                                         no
## 714                                        yes
## 715                                        yes
## 716                                        yes
## 717                                        yes
## 718                                        yes
## 719                                        yes
## 720                                        yes
## 721                                        yes
## 722                                        yes
## 723                                        yes
## 724                                        yes
## 725                                        yes
## 726                                        yes
## 727                                        yes
## 728                                        yes
## 729                                        yes
## 730                                        yes
## 731                                        yes
## 732                                        yes
## 733                                        yes
## 734                                        yes
## 735                                        yes
## 736                                        yes
## 737                                         no
## 738                                         no
## 739                                         no
## 740                                        yes
## 741                                        yes
## 742                                        yes
## 743                                        yes
## 744                                        yes
## 745                                        yes
## 746                                        yes
## 747                                        yes
## 748                                        yes
## 749                                        yes
## 750                                        yes
## 751                                        yes
## 752                                        yes
## 753                                        yes
## 754                                        yes
## 755                                        yes
## 756                                        yes
## 757                                         no
## 758                                        yes
## 759                                        yes
## 760                                        yes
## 761                                        yes
## 762                                        yes
## 763                                        yes
## 764                                        yes
## 765                                        yes
## 766                                        yes
## 767                                        yes
## 768                                        yes
## 769                                        yes
## 770                                        yes
## 771                                        yes
## 772                                        yes
## 773                                        yes
## 774                                        yes
## 775                                        yes
## 776                                        yes
## 777                                        yes
## 778                                        yes
## 779                                        yes
## 780                                        yes
## 781                                        yes
## 782                                        yes
## 783                                        yes
## 784                                        yes
## 785                                        yes
## 786                                        yes
## 787                                        yes
## 788                                         no
## 789                                        yes
## 790                                        yes
## 791                                        yes
## 792                                        yes
## 793                                        yes
## 794                                        yes
## 795                                        yes
## 796                                        yes
## 797                                        yes
## 798                                        yes
## 799                                        yes
## 800                                        yes
## 801                                        yes
## 802                                        yes
## 803                                        yes
## 804                                        yes
## 805                                        yes
## 806                                        yes
## 807                                        yes
## 808                                        yes
## 809                                        yes
## 810                                        yes
## 811                                        yes
## 812                                        yes
## 813                                        yes
## 814                                        yes
## 815                                        yes
## 816                                        yes
## 817                                        yes
## 818                                        yes
## 819                                        yes
## 820                                        yes
## 821                                        yes
## 822                                        yes
## 823                                        yes
## 824                                        yes
## 825                                        yes
## 826                                        yes
## 827                                        yes
## 828                                        yes
## 829                                        yes
## 830                                        yes
## 831                                        yes
## 832                                        yes
## 833                                        yes
## 834                                        yes
## 835                                        yes
## 836                                        yes
## 837                                        yes
## 838                                        yes
## 839                                        yes
## 840                                        yes
## 841                                        yes
## 842                                        yes
## 843                                        yes
## 844                                        yes
## 845                                        yes
## 846                                        yes
## 847                                        yes
## 848                                        yes
## 849                                        yes
## 850                                        yes
## 851                                        yes
## 852                                        yes
## 853                                        yes
## 854                                        yes
## 855                                        yes
## 856                                        yes
## 857                                        yes
## 858                                        yes
## 859                                        yes
## 860                                        yes
## 861                                        yes
## 862                                        yes
## 863                                        yes
## 864                                        yes
## 865                                        yes
## 866                                        yes
## 867                                        yes
## 868                                        yes
## 869                                        yes
## 870                                        yes
## 871                                         no
## 872                                        yes
## 873                                        yes
## 874                                        yes
## 875                                        yes
## 876                                        yes
## 877                                        yes
## 878                                        yes
## 879                                        yes
## 880                                        yes
## 881                                        yes
## 882                                        yes
## 883                                        yes
## 884                                        yes
## 885                                        yes
## 886                                        yes
## 887                                        yes
## 888                                        yes
## 889                                        yes
## 890                                        yes
## 891                                        yes
## 892                                        yes
## 893                                        yes
## 894                                        yes
## 895                                        yes
## 896                                        yes
## 897                                        yes
## 898                                        yes
## 899                                        yes
## 900                                        yes
## 901                                        yes
## 902                                        yes
## 903                                        yes
## 904                                        yes
## 905                                        yes
## 906                                        yes
## 907                                        yes
## 908                                        yes
## 909                                        yes
## 910                                        yes
## 911                                        yes
## 912                                        yes
## 913                                        yes
## 914                                        yes
## 915                                        yes
## 916                                        yes
## 917                                        yes
## 918                                        yes
## 919                                        yes
## 920                                        yes
## 921                                        yes
## 922                                        yes
## 923                                        yes
## 924                                        yes
## 925                                        yes
## 926                                        yes
## 927                                        yes
## 928                                        yes
## 929                                        yes
## 930                                        yes
## 931                                        yes
## 932                                        yes
## 933                                        yes
## 934                                        yes
## 935                                        yes
## 936                                        yes
## 937                                        yes
## 938                                        yes
## 939                                        yes
## 940                                        yes
## 941                                        yes
## 942                                        yes
## 943                                        yes
## 944                                        yes
## 945                                        yes
## 946                                        yes
## 947                                        yes
## 948                                        yes
## 949                                        yes
## 950                                        yes
## 951                                        yes
## 952                                        yes
## 953                                        yes
## 954                                        yes
## 955                                        yes
## 956                                        yes
## 957                                        yes
## 958                                        yes
## 959                                        yes
## 960                                        yes
## 961                                        yes
## 962                                        yes
## 963                                        yes
## 964                                        yes
## 965                                        yes
## 966                                        yes
## 967                                        yes
## 968                                        yes
## 969                                        yes
## 970                                        yes
## 971                                        yes
## 972                                        yes
## 973                                        yes
## 974                                        yes
## 975                                        yes
## 976                                        yes
## 977                                        yes
## 978                                        yes
## 979                                        yes
## 980                                        yes
## 981                                        yes
## 982                                        yes
## 983                                        yes
## 984                                        yes
## 985                                        yes
## 986                                        yes
## 987                                         no
## 988                                        yes
## 989                                        yes
## 990                                         no
## 991                                         no
## 992                                        yes
## 993                                         no
## 994                                         no
## 995                                        yes
## 996                                        yes
## 997                                        yes
## 998                                        yes
## 999                                        yes
## 1000                                       yes
## 1001                                       yes
## 1002                                       yes
## 1003                                       yes
## 1004                                       yes
## 1005                                        no
## 1006                                       yes
## 1007                                       yes
## 1008                                       yes
## 1009                                       yes
## 1010                                       yes
## 1011                                       yes
## 1012                                       yes
## 1013                                       yes
## 1014                                       yes
## 1015                                       yes
## 1016                                       yes
## 1017                                       yes
## 1018                                       yes
## 1019                                       yes
## 1020                                        no
## 1021                                        no
## 1022                                        no
## 1023                                        no
## 1024                                       yes
## 1025                                       yes
## 1026                                       yes
## 1027                                       yes
## 1028                                       yes
## 1029                                       yes
## 1030                                       yes
## 1031                                       yes
## 1032                                        no
## 1033                                        no
## 1034                                        no
## 1035                                       yes
## 1036                                       yes
## 1037                                       yes
## 1038                                       yes
## 1039                                       yes
## 1040                                       yes
## 1041                                       yes
## 1042                                       yes
## 1043                                       yes
## 1044                                        no
## 1045                                        no
## 1046                                       yes
## 1047                                       yes
## 1048                                        no
## 1049                                        no
## 1050                                       yes
## 1051                                       yes
## 1052                                       yes
## 1053                                       yes
## 1054                                        no
## 1055                                       yes
## 1056                                       yes
## 1057                                       yes
## 1058                                       yes
## 1059                                        no
## 1060                                       yes
## 1061                                       yes
## 1062                                       yes
## 1063                                       yes
## 1064                                       yes
## 1065                                       yes
## 1066                                       yes
## 1067                                       yes
## 1068                                       yes
## 1069                                       yes
## 1070                                        no
## 1071                                       yes
## 1072                                        no
## 1073                                       yes
## 1074                                        no
## 1075                                       yes
## 1076                                       yes
## 1077                                       yes
## 1078                                       yes
## 1079                                       yes
## 1080                                       yes
## 1081                                       yes
## 1082                                        no
## 1083                                        no
## 1084                                       yes
## 1085                                       yes
## 1086                                       yes
## 1087                                       yes
## 1088                                       yes
## 1089                                       yes
## 1090                                       yes
## 1091                                       yes
## 1092                                       yes
## 1093                                       yes
## 1094                                        no
## 1095                                        no
## 1096                                       yes
## 1097                                       yes
## 1098                                       yes
## 1099                                       yes
## 1100                                        no
## 1101                                        no
## 1102                                       yes
## 1103                                        no
## 1104                                        no
## 1105                                       yes
## 1106                                       yes
## 1107                                       yes
## 1108                                       yes
## 1109                                        no
## 1110                                       yes
## 1111                                       yes
## 1112                                       yes
## 1113                                       yes
## 1114                                       yes
## 1115                                       yes
## 1116                                       yes
## 1117                                       yes
## 1118                                       yes
## 1119                                        no
## 1120                                       yes
## 1121                                       yes
## 1122                                       yes
## 1123                                       yes
## 1124                                       yes
## 1125                                       yes
## 1126                                       yes
## 1127                                       yes
## 1128                                       yes
## 1129                                       yes
## 1130                                       yes
## 1131                                       yes
## 1132                                        no
## 1133                                       yes
## 1134                                       yes
## 1135                                        no
## 1136                                        no
## 1137                                       yes
## 1138                                        no
## 1139                                        no
## 1140                                       yes
## 1141                                       yes
## 1142                                       yes
## 1143                                       yes
## 1144                                       yes
## 1145                                       yes
## 1146                                       yes
## 1147                                       yes
## 1148                                       yes
## 1149                                       yes
## 1150                                       yes
## 1151                                        no
## 1152                                       yes
## 1153                                       yes
## 1154                                       yes
## 1155                                       yes
## 1156                                       yes
## 1157                                       yes
## 1158                                       yes
## 1159                                       yes
## 1160                                       yes
## 1161                                       yes
## 1162                                        no
## 1163                                       yes
## 1164                                       yes
## 1165                                        no
## 1166                                        no
## 1167                                        no
## 1168                                        no
## 1169                                       yes
## 1170                                       yes
## 1171                                       yes
## 1172                                       yes
## 1173                                       yes
## 1174                                       yes
## 1175                                       yes
## 1176                                       yes
## 1177                                        no
## 1178                                        no
## 1179                                        no
## 1180                                       yes
## 1181                                        no
## 1182                                       yes
## 1183                                       yes
## 1184                                       yes
## 1185                                       yes
## 1186                                       yes
## 1187                                       yes
## 1188                                       yes
## 1189                                        no
## 1190                                        no
## 1191                                       yes
## 1192                                       yes
## 1193                                        no
## 1194                                        no
## 1195                                       yes
## 1196                                       yes
## 1197                                       yes
## 1198                                       yes
## 1199                                       yes
## 1200                                       yes
## 1201                                       yes
## 1202                                       yes
## 1203                                       yes
## 1204                                        no
## 1205                                       yes
## 1206                                       yes
## 1207                                       yes
## 1208                                       yes
## 1209                                       yes
## 1210                                       yes
## 1211                                       yes
## 1212                                       yes
## 1213                                       yes
## 1214                                       yes
## 1215                                       yes
## 1216                                       yes
## 1217                                       yes
## 1218                                       yes
## 1219                                       yes
## 1220                                       yes
## 1221                                       yes
## 1222                                       yes
## 1223                                       yes
## 1224                                       yes
## 1225                                       yes
## 1226                                       yes
## 1227                                       yes
## 1228                                       yes
## 1229                                       yes
## 1230                                       yes
## 1231                                       yes
## 1232                                       yes
## 1233                                       yes
## 1234                                       yes
## 1235                                       yes
## 1236                                       yes
## 1237                                       yes
## 1238                                       yes
## 1239                                       yes
## 1240                                       yes
## 1241                                       yes
## 1242                                       yes
## 1243                                       yes
## 1244                                       yes
## 1245                                       yes
## 1246                                       yes
## 1247                                       yes
## 1248                                       yes
## 1249                                       yes
## 1250                                       yes
## 1251                                       yes
## 1252                                       yes
## 1253                                       yes
## 1254                                       yes
## 1255                                       yes
## 1256                                       yes
## 1257                                       yes
## 1258                                       yes
## 1259                                       yes
## 1260                                       yes
## 1261                                       yes
## 1262                                       yes
## 1263                                       yes
## 1264                                       yes
## 1265                                       yes
## 1266                                       yes
## 1267                                       yes
## 1268                                       yes
## 1269                                       yes
## 1270                                       yes
## 1271                                       yes
## 1272                                       yes
## 1273                                       yes
## 1274                                       yes
## 1275                                       yes
## 1276                                       yes
## 1277                                       yes
## 1278                                       yes
## 1279                                       yes
## 1280                                       yes
## 1281                                       yes
## 1282                                       yes
## 1283                                       yes
## 1284                                       yes
## 1285                                       yes
## 1286                                       yes
## 1287                                       yes
## 1288                                       yes
## 1289                                       yes
## 1290                                       yes
## 1291                                       yes
## 1292                                       yes
## 1293                                       yes
## 1294                                       yes
## 1295                                       yes
## 1296                                       yes
## 1297                                       yes
## 1298                                       yes
## 1299                                       yes
## 1300                                       yes
## 1301                                       yes
## 1302                                       yes
## 1303                                       yes
## 1304                                       yes
## 1305                                       yes
## 1306                                       yes
## 1307                                       yes
## 1308                                       yes
## 1309                                       yes
## 1310                                       yes
## 1311                                       yes
## 1312                                       yes
## 1313                                       yes
## 1314                                       yes
## 1315                                       yes
## 1316                                       yes
## 1317                                       yes
## 1318                                       yes
## 1319                                       yes
## 1320                                       yes
## 1321                                       yes
## 1322                                       yes
## 1323                                       yes
## 1324                                       yes
## 1325                                       yes
## 1326                                       yes
## 1327                                       yes
## 1328                                       yes
## 1329                                       yes
## 1330                                       yes
## 1331                                       yes
## 1332                                       yes
## 1333                                       yes
## 1334                                       yes
## 1335                                       yes
## 1336                                       yes
## 1337                                       yes
## 1338                                       yes
## 1339                                       yes
## 1340                                       yes
## 1341                                       yes
## 1342                                       yes
## 1343                                       yes
## 1344                                       yes
## 1345                                       yes
## 1346                                       yes
## 1347                                       yes
## 1348                                       yes
## 1349                                       yes
## 1350                                       yes
## 1351                                       yes
## 1352                                       yes
## 1353                                       yes
## 1354                                       yes
## 1355                                       yes
## 1356                                       yes
## 1357                                       yes
## 1358                                       yes
## 1359                                       yes
## 1360                                       yes
## 1361                                       yes
## 1362                                       yes
## 1363                                       yes
## 1364                                       yes
## 1365                                       yes
## 1366                                       yes
## 1367                                       yes
## 1368                                       yes
## 1369                                       yes
## 1370                                       yes
## 1371                                       yes
## 1372                                       yes
## 1373                                       yes
## 1374                                       yes
## 1375                                       yes
## 1376                                       yes
## 1377                                       yes
## 1378                                       yes
## 1379                                       yes
## 1380                                       yes
## 1381                                       yes
## 1382                                       yes
## 1383                                       yes
## 1384                                       yes
## 1385                                       yes
## 1386                                       yes
## 1387                                       yes
## 1388                                       yes
## 1389                                       yes
## 1390                                       yes
## 1391                                       yes
## 1392                                       yes
## 1393                                       yes
## 1394                                       yes
## 1395                                       yes
## 1396                                       yes
## 1397                                       yes
## 1398                                       yes
## 1399                                       yes
## 1400                                       yes
## 1401                                       yes
## 1402                                       yes
## 1403                                       yes
## 1404                                       yes
## 1405                                       yes
## 1406                                       yes
## 1407                                       yes
## 1408                                       yes
## 1409                                       yes
## 1410                                       yes
## 1411                                       yes
## 1412                                       yes
## 1413                                       yes
## 1414                                       yes
## 1415                                       yes
## 1416                                       yes
## 1417                                       yes
## 1418                                       yes
## 1419                                       yes
## 1420                                       yes
## 1421                                       yes
## 1422                                       yes
## 1423                                       yes
## 1424                                       yes
## 1425                                       yes
## 1426                                       yes
## 1427                                       yes
## 1428                                       yes
## 1429                                       yes
## 1430                                       yes
## 1431                                       yes
## 1432                                       yes
## 1433                                       yes
## 1434                                       yes
## 1435                                       yes
## 1436                                       yes
## 1437                                       yes
## 1438                                       yes
## 1439                                       yes
## 1440                                       yes
## 1441                                       yes
## 1442                                       yes
## 1443                                       yes
## 1444                                       yes
## 1445                                       yes
## 1446                                       yes
## 1447                                       yes
## 1448                                       yes
## 1449                                       yes
## 1450                                       yes
## 1451                                       yes
## 1452                                       yes
## 1453                                       yes
## 1454                                       yes
## 1455                                       yes
## 1456                                       yes
## 1457                                       yes
## 1458                                       yes
## 1459                                       yes
## 1460                                       yes
## 1461                                       yes
## 1462                                       yes
## 1463                                       yes
## 1464                                       yes
## 1465                                       yes
## 1466                                       yes
## 1467                                       yes
## 1468                                       yes
## 1469                                       yes
## 1470                                       yes
## 1471                                       yes
## 1472                                       yes
## 1473                                       yes
## 1474                                       yes
## 1475                                       yes
## 1476                                       yes
## 1477                                       yes
## 1478                                       yes
## 1479                                       yes
## 1480                                       yes
## 1481                                       yes
## 1482                                       yes
## 1483                                       yes
## 1484                                       yes
## 1485                                       yes
## 1486                                       yes
## 1487                                       yes
## 1488                                       yes
## 1489                                       yes
## 1490                                       yes
## 1491                                       yes
## 1492                                       yes
## 1493                                       yes
## 1494                                       yes
## 1495                                       yes
## 1496                                       yes
## 1497                                       yes
## 1498                                       yes
## 1499                                       yes
## 1500                                       yes
## 1501                                       yes
## 1502                                       yes
## 1503                                       yes
## 1504                                       yes
## 1505                                       yes
## 1506                                       yes
## 1507                                       yes
## 1508                                       yes
## 1509                                       yes
## 1510                                       yes
## 1511                                       yes
## 1512                                       yes
## 1513                                       yes
## 1514                                       yes
## 1515                                       yes
## 1516                                       yes
## 1517                                       yes
## 1518                                       yes
## 1519                                       yes
## 1520                                        no
## 1521                                        no
## 1522                                       yes
## 1523                                       yes
## 1524                                       yes
## 1525                                       yes
## 1526                                       yes
## 1527                                       yes
## 1528                                       yes
## 1529                                       yes
## 1530                                       yes
## 1531                                       yes
## 1532                                       yes
## 1533                                       yes
## 1534                                       yes
## 1535                                       yes
## 1536                                       yes
## 1537                                       yes
## 1538                                       yes
## 1539                                       yes
## 1540                                       yes
## 1541                                       yes
## 1542                                       yes
## 1543                                       yes
## 1544                                       yes
## 1545                                       yes
## 1546                                       yes
## 1547                                       yes
## 1548                                       yes
## 1549                                       yes
## 1550                                       yes
## 1551                                       yes
## 1552                                       yes
## 1553                                       yes
## 1554                                       yes
## 1555                                       yes
## 1556                                       yes
## 1557                                       yes
## 1558                                       yes
## 1559                                       yes
## 1560                                       yes
## 1561                                       yes
## 1562                                       yes
## 1563                                       yes
## 1564                                       yes
## 1565                                       yes
## 1566                                       yes
## 1567                                       yes
## 1568                                       yes
## 1569                                       yes
## 1570                                       yes
## 1571                                       yes
## 1572                                       yes
## 1573                                       yes
## 1574                                       yes
## 1575                                       yes
## 1576                                       yes
## 1577                                       yes
## 1578                                       yes
## 1579                                       yes
## 1580                                       yes
## 1581                                       yes
## 1582                                       yes
## 1583                                       yes
## 1584                                       yes
## 1585                                       yes
## 1586                                       yes
## 1587                                       yes
## 1588                                       yes
## 1589                                       yes
## 1590                                       yes
## 1591                                       yes
## 1592                                       yes
## 1593                                       yes
## 1594                                       yes
## 1595                                       yes
## 1596                                       yes
## 1597                                       yes
## 1598                                       yes
## 1599                                       yes
## 1600                                       yes
## 1601                                       yes
## 1602                                       yes
## 1603                                       yes
## 1604                                       yes
## 1605                                       yes
## 1606                                       yes
## 1607                                       yes
## 1608                                       yes
## 1609                                       yes
## 1610                                       yes
## 1611                                       yes
## 1612                                       yes
## 1613                                       yes
## 1614                                       yes
## 1615                                       yes
## 1616                                       yes
## 1617                                       yes
## 1618                                       yes
## 1619                                       yes
## 1620                                       yes
## 1621                                       yes
## 1622                                       yes
## 1623                                       yes
## 1624                                       yes
## 1625                                       yes
## 1626                                       yes
## 1627                                       yes
## 1628                                       yes
## 1629                                       yes
## 1630                                       yes
## 1631                                       yes
## 1632                                       yes
## 1633                                       yes
## 1634                                       yes
## 1635                                       yes
## 1636                                       yes
## 1637                                       yes
## 1638                                       yes
## 1639                                       yes
## 1640                                       yes
## 1641                                       yes
## 1642                                       yes
## 1643                                       yes
## 1644                                       yes
## 1645                                       yes
## 1646                                       yes
## 1647                                       yes
## 1648                                       yes
## 1649                                       yes
## 1650                                       yes
## 1651                                       yes
## 1652                                       yes
## 1653                                       yes
## 1654                                       yes
## 1655                                       yes
## 1656                                       yes
## 1657                                       yes
## 1658                                       yes
## 1659                                       yes
## 1660                                       yes
## 1661                                       yes
## 1662                                       yes
## 1663                                       yes
## 1664                                       yes
## 1665                                       yes
## 1666                                       yes
## 1667                                       yes
## 1668                                       yes
## 1669                                       yes
## 1670                                       yes
## 1671                                       yes
## 1672                                       yes
## 1673                                       yes
## 1674                                       yes
## 1675                                       yes
## 1676                                       yes
## 1677                                       yes
## 1678                                       yes
## 1679                                       yes
## 1680                                       yes
## 1681                                       yes
## 1682                                       yes
## 1683                                       yes
## 1684                                       yes
## 1685                                       yes
## 1686                                       yes
## 1687                                       yes
## 1688                                       yes
## 1689                                       yes
## 1690                                       yes
## 1691                                       yes
## 1692                                       yes
## 1693                                       yes
## 1694                                       yes
## 1695                                       yes
## 1696                                       yes
## 1697                                       yes
## 1698                                       yes
## 1699                                       yes
## 1700                                       yes
## 1701                                       yes
## 1702                                       yes
## 1703                                       yes
## 1704                                       yes
## 1705                                       yes
## 1706                                       yes
## 1707                                       yes
## 1708                                       yes
## 1709                                       yes
## 1710                                       yes
## 1711                                       yes
## 1712                                       yes
## 1713                                       yes
## 1714                                       yes
## 1715                                       yes
## 1716                                       yes
## 1717                                       yes
## 1718                                       yes
## 1719                                       yes
## 1720                                       yes
## 1721                                       yes
## 1722                                       yes
## 1723                                       yes
## 1724                                       yes
## 1725                                       yes
## 1726                                       yes
## 1727                                       yes
## 1728                                       yes
## 1729                                       yes
## 1730                                       yes
## 1731                                       yes
## 1732                                       yes
## 1733                                       yes
## 1734                                       yes
## 1735                                       yes
## 1736                                       yes
## 1737                                       yes
## 1738                                       yes
## 1739                                       yes
## 1740                                       yes
## 1741                                       yes
## 1742                                       yes
## 1743                                       yes
## 1744                                       yes
## 1745                                       yes
## 1746                                       yes
## 1747                                       yes
## 1748                                       yes
## 1749                                       yes
## 1750                                       yes
## 1751                                       yes
## 1752                                       yes
## 1753                                       yes
## 1754                                       yes
## 1755                                       yes
## 1756                                       yes
## 1757                                       yes
## 1758                                       yes
## 1759                                       yes
## 1760                                       yes
## 1761                                       yes
## 1762                                       yes
## 1763                                       yes
## 1764                                       yes
## 1765                                       yes
## 1766                                       yes
## 1767                                       yes
## 1768                                       yes
## 1769                                       yes
## 1770                                       yes
## 1771                                       yes
## 1772                                       yes
## 1773                                       yes
## 1774                                       yes
## 1775                                       yes
## 1776                                       yes
## 1777                                       yes
## 1778                                       yes
## 1779                                       yes
## 1780                                       yes
## 1781                                       yes
## 1782                                       yes
## 1783                                       yes
## 1784                                       yes
## 1785                                       yes
## 1786                                       yes
## 1787                                       yes
## 1788                                       yes
## 1789                                       yes
## 1790                                       yes
## 1791                                       yes
## 1792                                       yes
## 1793                                       yes
## 1794                                       yes
## 1795                                       yes
## 1796                                       yes
## 1797                                       yes
## 1798                                       yes
## 1799                                       yes
## 1800                                       yes
## 1801                                       yes
## 1802                                       yes
## 1803                                       yes
## 1804                                       yes
## 1805                                       yes
## 1806                                       yes
## 1807                                       yes
## 1808                                       yes
## 1809                                       yes
## 1810                                       yes
## 1811                                       yes
## 1812                                       yes
## 1813                                       yes
## 1814                                       yes
## 1815                                       yes
## 1816                                       yes
## 1817                                       yes
## 1818                                       yes
## 1819                                       yes
## 1820                                       yes
## 1821                                       yes
## 1822                                       yes
## 1823                                       yes
## 1824                                       yes
## 1825                                       yes
## 1826                                       yes
## 1827                                       yes
## 1828                                       yes
## 1829                                       yes
## 1830                                       yes
## 1831                                       yes
## 1832                                       yes
## 1833                                       yes
## 1834                                       yes
## 1835                                       yes
## 1836                                       yes
## 1837                                       yes
## 1838                                       yes
## 1839                                       yes
## 1840                                       yes
## 1841                                       yes
## 1842                                       yes
## 1843                                       yes
## 1844                                       yes
## 1845                                       yes
## 1846                                       yes
## 1847                                       yes
## 1848                                       yes
## 1849                                       yes
## 1850                                       yes
## 1851                                       yes
## 1852                                       yes
## 1853                                       yes
## 1854                                       yes
## 1855                                       yes
## 1856                                       yes
## 1857                                       yes
## 1858                                       yes
## 1859                                       yes
## 1860                                       yes
## 1861                                       yes
## 1862                                       yes
## 1863                                       yes
## 1864                                       yes
## 1865                                       yes
## 1866                                       yes
## 1867                                       yes
## 1868                                       yes
## 1869                                       yes
## 1870                                       yes
## 1871                                       yes
## 1872                                       yes
## 1873                                       yes
## 1874                                       yes
## 1875                                       yes
## 1876                                       yes
## 1877                                       yes
## 1878                                       yes
## 1879                                       yes
## 1880                                       yes
## 1881                                       yes
## 1882                                       yes
## 1883                                       yes
## 1884                                       yes
## 1885                                       yes
## 1886                                       yes
## 1887                                       yes
## 1888                                       yes
## 1889                                       yes
## 1890                                       yes
## 1891                                       yes
## 1892                                       yes
## 1893                                       yes
## 1894                                       yes
## 1895                                       yes
## 1896                                       yes
## 1897                                       yes
## 1898                                       yes
## 1899                                       yes
## 1900                                       yes
## 1901                                       yes
## 1902                                       yes
## 1903                                       yes
## 1904                                       yes
## 1905                                       yes
## 1906                                       yes
## 1907                                       yes
## 1908                                       yes
## 1909                                       yes
## 1910                                       yes
## 1911                                       yes
## 1912                                       yes
## 1913                                       yes
## 1914                                       yes
## 1915                                       yes
## 1916                                       yes
## 1917                                       yes
## 1918                                       yes
## 1919                                       yes
## 1920                                       yes
## 1921                                       yes
## 1922                                       yes
## 1923                                       yes
## 1924                                       yes
## 1925                                       yes
## 1926                                       yes
## 1927                                       yes
## 1928                                       yes
## 1929                                       yes
## 1930                                       yes
## 1931                                       yes
## 1932                                       yes
## 1933                                       yes
## 1934                                       yes
## 1935                                       yes
## 1936                                       yes
## 1937                                       yes
## 1938                                       yes
## 1939                                       yes
## 1940                                       yes
## 1941                                       yes
## 1942                                       yes
## 1943                                       yes
## 1944                                       yes
## 1945                                       yes
## 1946                                       yes
## 1947                                       yes
## 1948                                       yes
## 1949                                       yes
## 1950                                       yes
## 1951                                       yes
## 1952                                       yes
## 1953                                       yes
## 1954                                       yes
## 1955                                       yes
## 1956                                       yes
## 1957                                       yes
## 1958                                       yes
## 1959                                       yes
## 1960                                       yes
## 1961                                       yes
## 1962                                       yes
## 1963                                       yes
## 1964                                       yes
## 1965                                       yes
## 1966                                       yes
## 1967                                       yes
## 1968                                       yes
## 1969                                       yes
## 1970                                       yes
## 1971                                       yes
## 1972                                       yes
## 1973                                       yes
## 1974                                       yes
## 1975                                       yes
## 1976                                       yes
## 1977                                       yes
## 1978                                       yes
## 1979                                       yes
## 1980                                       yes
## 1981                                       yes
## 1982                                       yes
## 1983                                       yes
## 1984                                       yes
## 1985                                       yes
## 1986                                       yes
## 1987                                       yes
## 1988                                       yes
## 1989                                       yes
## 1990                                       yes
## 1991                                       yes
## 1992                                       yes
## 1993                                       yes
## 1994                                       yes
## 1995                                       yes
## 1996                                       yes
## 1997                                       yes
## 1998                                       yes
## 1999                                       yes
## 2000                                       yes
## 2001                                       yes
## 2002                                       yes
## 2003                                       yes
## 2004                                       yes
## 2005                                       yes
## 2006                                       yes
## 2007                                       yes
## 2008                                       yes
## 2009                                       yes
## 2010                                       yes
## 2011                                       yes
## 2012                                       yes
## 2013                                       yes
## 2014                                       yes
## 2015                                       yes
## 2016                                       yes
## 2017                                       yes
## 2018                                       yes
## 2019                                       yes
## 2020                                       yes
## 2021                                       yes
## 2022                                       yes
## 2023                                       yes
## 2024                                       yes
## 2025                                       yes
## 2026                                       yes
## 2027                                       yes
## 2028                                       yes
## 2029                                       yes
## 2030                                       yes
## 2031                                       yes
## 2032                                       yes
## 2033                                       yes
## 2034                                       yes
## 2035                                       yes
## 2036                                       yes
## 2037                                       yes
## 2038                                       yes
## 2039                                       yes
## 2040                                       yes
## 2041                                       yes
## 2042                                       yes
## 2043                                       yes
## 2044                                       yes
## 2045                                       yes
## 2046                                       yes
## 2047                                       yes
## 2048                                       yes
## 2049                                       yes
## 2050                                       yes
## 2051                                       yes
## 2052                                       yes
## 2053                                       yes
## 2054                                       yes
## 2055                                       yes
## 2056                                       yes
## 2057                                       yes
## 2058                                       yes
## 2059                                       yes
## 2060                                       yes
## 2061                                       yes
## 2062                                       yes
## 2063                                       yes
## 2064                                       yes
## 2065                                       yes
## 2066                                       yes
## 2067                                       yes
## 2068                                       yes
## 2069                                       yes
## 2070                                       yes
## 2071                                       yes
## 2072                                       yes
## 2073                                       yes
## 2074                                       yes
## 2075                                       yes
## 2076                                       yes
## 2077                                       yes
## 2078                                       yes
## 2079                                       yes
## 2080                                       yes
## 2081                                       yes
## 2082                                       yes
## 2083                                       yes
## 2084                                       yes
## 2085                                       yes
## 2086                                       yes
## 2087                                       yes
## 2088                                       yes
## 2089                                       yes
## 2090                                       yes
## 2091                                       yes
## 2092                                       yes
## 2093                                       yes
## 2094                                       yes
## 2095                                       yes
## 2096                                       yes
## 2097                                       yes
## 2098                                       yes
## 2099                                       yes
## 2100                                       yes
## 2101                                       yes
## 2102                                       yes
## 2103                                       yes
## 2104                                       yes
## 2105                                       yes
## 2106                                       yes
## 2107                                       yes
## 2108                                       yes
## 2109                                       yes
## 2110                                       yes
## 2111                                       yes
##      Frequency_of_consumption_of_vegetables Number_of_main_meals
## 1                                 Sometimes                    3
## 2                                    Always                    3
## 3                                 Sometimes                    3
## 4                                    Always                    3
## 5                                 Sometimes                    1
## 6                                 Sometimes                    3
## 7                                    Always                    3
## 8                                 Sometimes                    3
## 9                                    Always                    3
## 10                                Sometimes                    3
## 11                                   Always                    3
## 12                                Sometimes                    3
## 13                                   Always                    3
## 14                                Sometimes                    3
## 15                                   Always                    1
## 16                                   Always                    3
## 17                                Sometimes                    1
## 18                                Sometimes                    1
## 19                                   Always                   3+
## 20                                Sometimes                    1
## 21                                Sometimes                    3
## 22                                   Always                    1
## 23                                   Always                    3
## 24                                    Never                    1
## 25                                Sometimes                    3
## 26                                Sometimes                   3+
## 27                                Sometimes                    1
## 28                                Sometimes                   3+
## 29                                   Always                    3
## 30                                Sometimes                    3
## 31                                    Never                   3+
## 32                                Sometimes                    1
## 33                                Sometimes                    3
## 34                                Sometimes                    1
## 35                                Sometimes                   3+
## 36                                Sometimes                    3
## 37                                Sometimes                    3
## 38                                Sometimes                    3
## 39                                Sometimes                    3
## 40                                Sometimes                    3
## 41                                Sometimes                    3
## 42                                Sometimes                   3+
## 43                                    Never                    3
## 44                                Sometimes                    3
## 45                                    Never                    3
## 46                                Sometimes                    3
## 47                                    Never                    3
## 48                                    Never                    3
## 49                                   Always                    3
## 50                                Sometimes                    3
## 51                                   Always                    3
## 52                                Sometimes                    3
## 53                                   Always                    1
## 54                                   Always                    3
## 55                                   Always                   3+
## 56                                Sometimes                   3+
## 57                                Sometimes                    3
## 58                                Sometimes                    3
## 59                                   Always                    1
## 60                                Sometimes                   3+
## 61                                Sometimes                    3
## 62                                Sometimes                    3
## 63                                Sometimes                    1
## 64                                Sometimes                    3
## 65                                Sometimes                    3
## 66                                    Never                    3
## 67                                    Never                    3
## 68                                Sometimes                    3
## 69                                    Never                    3
## 70                                Sometimes                    3
## 71                                Sometimes                    3
## 72                                   Always                    3
## 73                                Sometimes                    3
## 74                                Sometimes                    3
## 75                                Sometimes                    3
## 76                                   Always                    3
## 77                                Sometimes                    3
## 78                                Sometimes                    3
## 79                                Sometimes                    3
## 80                                Sometimes                    3
## 81                                   Always                    3
## 82                                Sometimes                    3
## 83                                Sometimes                    3
## 84                                   Always                    3
## 85                                Sometimes                    3
## 86                                Sometimes                    3
## 87                                Sometimes                    1
## 88                                Sometimes                    3
## 89                                Sometimes                    3
## 90                                   Always                    3
## 91                                   Always                   3+
## 92                                   Always                    3
## 93                                   Always                   3+
## 94                                   Always                    3
## 95                                   Always                    3
## 96                                   Always                    1
## 97                                Sometimes                    3
## 98                                   Always                    1
## 99                                   Always                    1
## 100                               Sometimes                    3
## 101                                  Always                    1
## 102                               Sometimes                    3
## 103                               Sometimes                   3+
## 104                                  Always                   3+
## 105                               Sometimes                    3
## 106                               Sometimes                    1
## 107                               Sometimes                    1
## 108                               Sometimes                    3
## 109                               Sometimes                    3
## 110                                  Always                    1
## 111                                  Always                    3
## 112                               Sometimes                    1
## 113                               Sometimes                   3+
## 114                               Sometimes                    1
## 115                                  Always                    1
## 116                                  Always                    3
## 117                                  Always                    3
## 118                               Sometimes                    3
## 119                               Sometimes                    3
## 120                                  Always                    3
## 121                               Sometimes                    3
## 122                                   Never                    3
## 123                                  Always                   3+
## 124                                  Always                    1
## 125                                  Always                    3
## 126                               Sometimes                    3
## 127                               Sometimes                    3
## 128                                  Always                    1
## 129                                  Always                    3
## 130                                  Always                    3
## 131                               Sometimes                   3+
## 132                               Sometimes                    3
## 133                                  Always                    3
## 134                                  Always                    3
## 135                                  Always                    3
## 136                               Sometimes                    3
## 137                               Sometimes                    3
## 138                               Sometimes                    3
## 139                                  Always                    3
## 140                               Sometimes                    3
## 141                                  Always                    3
## 142                                  Always                    3
## 143                               Sometimes                    3
## 144                                  Always                    1
## 145                               Sometimes                   3+
## 146                               Sometimes                    1
## 147                                  Always                    3
## 148                                  Always                    3
## 149                                  Always                    3
## 150                                  Always                    1
## 151                               Sometimes                    1
## 152                                  Always                    3
## 153                               Sometimes                    1
## 154                               Sometimes                    3
## 155                               Sometimes                    3
## 156                                  Always                    1
## 157                                  Always                    3
## 158                               Sometimes                    3
## 159                                  Always                    3
## 160                               Sometimes                    1
## 161                                  Always                    3
## 162                               Sometimes                    3
## 163                                  Always                    3
## 164                                  Always                    3
## 165                                  Always                    3
## 166                               Sometimes                    3
## 167                                  Always                    3
## 168                               Sometimes                    3
## 169                               Sometimes                    1
## 170                               Sometimes                    3
## 171                               Sometimes                    1
## 172                               Sometimes                    3
## 173                                  Always                    1
## 174                                  Always                    3
## 175                               Sometimes                    1
## 176                               Sometimes                    3
## 177                                  Always                    1
## 178                                  Always                    3
## 179                                  Always                    3
## 180                               Sometimes                    1
## 181                               Sometimes                    3
## 182                               Sometimes                    3
## 183                                  Always                    3
## 184                               Sometimes                    1
## 185                               Sometimes                    1
## 186                                  Always                    3
## 187                               Sometimes                    3
## 188                               Sometimes                    3
## 189                                  Always                    1
## 190                               Sometimes                    3
## 191                               Sometimes                    3
## 192                                  Always                    1
## 193                                  Always                    3
## 194                               Sometimes                    1
## 195                                  Always                    3
## 196                                  Always                    3
## 197                               Sometimes                    3
## 198                               Sometimes                    3
## 199                               Sometimes                    1
## 200                               Sometimes                    1
## 201                                  Always                    1
## 202                               Sometimes                    3
## 203                                  Always                    3
## 204                               Sometimes                    3
## 205                               Sometimes                    3
## 206                               Sometimes                    1
## 207                               Sometimes                    3
## 208                               Sometimes                    3
## 209                               Sometimes                    3
## 210                               Sometimes                    3
## 211                               Sometimes                    3
## 212                               Sometimes                    1
## 213                               Sometimes                    1
## 214                                  Always                    3
## 215                               Sometimes                    3
## 216                                  Always                    3
## 217                                  Always                    3
## 218                               Sometimes                    3
## 219                                   Never                    1
## 220                               Sometimes                    3
## 221                               Sometimes                    3
## 222                               Sometimes                    1
## 223                                  Always                   3+
## 224                                  Always                    3
## 225                               Sometimes                    1
## 226                                  Always                    3
## 227                               Sometimes                    3
## 228                                  Always                    3
## 229                                  Always                    3
## 230                                  Always                    3
## 231                                  Always                   3+
## 232                                  Always                    1
## 233                                  Always                    3
## 234                                  Always                    1
## 235                               Sometimes                    1
## 236                               Sometimes                    1
## 237                                   Never                    3
## 238                                  Always                    3
## 239                                  Always                    1
## 240                                  Always                    3
## 241                               Sometimes                    1
## 242                                  Always                    3
## 243                                   Never                    3
## 244                               Sometimes                    3
## 245                               Sometimes                    1
## 246                                  Always                    3
## 247                                  Always                    3
## 248                                  Always                    3
## 249                                  Always                    3
## 250                                  Always                    1
## 251                                  Always                    1
## 252                               Sometimes                    1
## 253                               Sometimes                    3
## 254                               Sometimes                    1
## 255                                  Always                    3
## 256                                   Never                    3
## 257                               Sometimes                    3
## 258                               Sometimes                    3
## 259                                  Always                    1
## 260                                   Never                    3
## 261                               Sometimes                    3
## 262                               Sometimes                    3
## 263                               Sometimes                    3
## 264                               Sometimes                    3
## 265                                  Always                    3
## 266                                   Never                    3
## 267                                  Always                   3+
## 268                                  Always                    3
## 269                               Sometimes                   3+
## 270                               Sometimes                    3
## 271                               Sometimes                    3
## 272                               Sometimes                    3
## 273                               Sometimes                    3
## 274                               Sometimes                    3
## 275                               Sometimes                    3
## 276                                  Always                    3
## 277                               Sometimes                    1
## 278                               Sometimes                   3+
## 279                                  Always                    3
## 280                                  Always                    3
## 281                                  Always                   3+
## 282                               Sometimes                    3
## 283                               Sometimes                    3
## 284                               Sometimes                    3
## 285                                   Never                    1
## 286                               Sometimes                    3
## 287                               Sometimes                    3
## 288                               Sometimes                    3
## 289                                  Always                    3
## 290                               Sometimes                    3
## 291                               Sometimes                    3
## 292                               Sometimes                    3
## 293                               Sometimes                    3
## 294                               Sometimes                    3
## 295                               Sometimes                    1
## 296                               Sometimes                    1
## 297                                  Always                    3
## 298                               Sometimes                    3
## 299                               Sometimes                    3
## 300                                  Always                    3
## 301                               Sometimes                    3
## 302                               Sometimes                   3+
## 303                                  Always                    3
## 304                               Sometimes                   3+
## 305                               Sometimes                    3
## 306                               Sometimes                    3
## 307                                   Never                    3
## 308                               Sometimes                    1
## 309                                  Always                   3+
## 310                               Sometimes                    1
## 311                               Sometimes                   3+
## 312                               Sometimes                    3
## 313                                  Always                    3
## 314                                   Never                    3
## 315                                  Always                    3
## 316                               Sometimes                    3
## 317                                  Always                    3
## 318                                  Always                   3+
## 319                               Sometimes                    3
## 320                               Sometimes                    3
## 321                                  Always                    1
## 322                                  Always                    3
## 323                                  Always                    3
## 324                               Sometimes                    3
## 325                               Sometimes                    3
## 326                               Sometimes                    1
## 327                                  Always                    3
## 328                                  Always                   3+
## 329                                  Always                    1
## 330                                  Always                    3
## 331                                  Always                   3+
## 332                               Sometimes                    3
## 333                               Sometimes                    1
## 334                                  Always                   3+
## 335                               Sometimes                    3
## 336                                   Never                   3+
## 337                               Sometimes                    3
## 338                                  Always                    3
## 339                                  Always                    1
## 340                               Sometimes                    3
## 341                                  Always                    3
## 342                               Sometimes                    3
## 343                                  Always                    3
## 344                                  Always                    3
## 345                                  Always                    3
## 346                                  Always                    3
## 347                                  Always                    3
## 348                               Sometimes                    3
## 349                               Sometimes                    3
## 350                               Sometimes                    3
## 351                               Sometimes                    3
## 352                                  Always                   3+
## 353                                   Never                    3
## 354                                   Never                    3
## 355                               Sometimes                    3
## 356                                  Always                    1
## 357                                  Always                    3
## 358                                   Never                    3
## 359                               Sometimes                    1
## 360                               Sometimes                    3
## 361                               Sometimes                    3
## 362                               Sometimes                    1
## 363                                  Always                    3
## 364                               Sometimes                    1
## 365                               Sometimes                    1
## 366                                  Always                    3
## 367                               Sometimes                    1
## 368                               Sometimes                    3
## 369                               Sometimes                    1
## 370                                  Always                    3
## 371                               Sometimes                    3
## 372                                  Always                    1
## 373                                  Always                    3
## 374                               Sometimes                    1
## 375                               Sometimes                   3+
## 376                               Sometimes                    1
## 377                                  Always                    3
## 378                               Sometimes                   3+
## 379                                  Always                    3
## 380                                  Always                    3
## 381                                  Always                    3
## 382                                  Always                    3
## 383                               Sometimes                    3
## 384                               Sometimes                    3
## 385                                  Always                    1
## 386                               Sometimes                    3
## 387                                   Never                    3
## 388                               Sometimes                    3
## 389                               Sometimes                    3
## 390                                   Never                    1
## 391                               Sometimes                    3
## 392                               Sometimes                    3
## 393                                  Always                    3
## 394                                   Never                    3
## 395                               Sometimes                    3
## 396                                   Never                    3
## 397                                  Always                    3
## 398                               Sometimes                   3+
## 399                                  Always                    1
## 400                                  Always                    1
## 401                               Sometimes                    3
## 402                               Sometimes                    3
## 403                                  Always                    1
## 404                                  Always                    3
## 405                               Sometimes                    3
## 406                                  Always                    3
## 407                               Sometimes                    3
## 408                                  Always                    3
## 409                                  Always                    1
## 410                                  Always                    1
## 411                               Sometimes                    3
## 412                                  Always                    3
## 413                               Sometimes                    3
## 414                               Sometimes                    3
## 415                               Sometimes                    1
## 416                                  Always                    3
## 417                                  Always                    3
## 418                                  Always                    3
## 419                                  Always                    3
## 420                                   Never                    3
## 421                                  Always                   3+
## 422                                  Always                   3+
## 423                               Sometimes                    3
## 424                               Sometimes                    3
## 425                               Sometimes                    3
## 426                               Sometimes                    3
## 427                               Sometimes                    3
## 428                                  Always                    3
## 429                                  Always                    1
## 430                               Sometimes                    3
## 431                               Sometimes                    3
## 432                               Sometimes                   3+
## 433                                  Always                    3
## 434                               Sometimes                    3
## 435                               Sometimes                   3+
## 436                               Sometimes                    1
## 437                               Sometimes                    3
## 438                               Sometimes                    1
## 439                                  Always                    3
## 440                               Sometimes                    3
## 441                               Sometimes                    3
## 442                                  Always                    3
## 443                               Sometimes                    3
## 444                               Sometimes                    3
## 445                               Sometimes                    1
## 446                               Sometimes                   3+
## 447                                  Always                    3
## 448                               Sometimes                   3+
## 449                                  Always                    1
## 450                                   Never                    3
## 451                                  Always                    3
## 452                               Sometimes                    3
## 453                                  Always                    3
## 454                                  Always                    3
## 455                                  Always                    1
## 456                               Sometimes                    3
## 457                                  Always                    1
## 458                               Sometimes                    3
## 459                               Sometimes                    3
## 460                               Sometimes                    3
## 461                               Sometimes                    3
## 462                               Sometimes                    1
## 463                               Sometimes                    1
## 464                               Sometimes                    3
## 465                                  Always                   3+
## 466                               Sometimes                    3
## 467                                  Always                    3
## 468                                  Always                    3
## 469                                  Always                    3
## 470                                  Always                    1
## 471                               Sometimes                    3
## 472                               Sometimes                    3
## 473                                  Always                   3+
## 474                                   Never                    3
## 475                               Sometimes                    3
## 476                               Sometimes                    1
## 477                                  Always                    3
## 478                                  Always                    3
## 479                               Sometimes                    3
## 480                                   Never                   3+
## 481                               Sometimes                    3
## 482                                  Always                   3+
## 483                               Sometimes                    1
## 484                               Sometimes                    3
## 485                               Sometimes                    3
## 486                                   Never                    3
## 487                               Sometimes                    3
## 488                               Sometimes                    3
## 489                                  Always                    3
## 490                               Sometimes                    1
## 491                                  Always                    3
## 492                               Sometimes                    3
## 493                                  Always                    3
## 494                               Sometimes                    3
## 495                                  Always                    3
## 496                                  Always                    1
## 497                               Sometimes                    3
## 498                               Sometimes                    3
## 499                                  Always                    3
## 500                                  Always                    3
## 501                                  Always                    3
## 502                                  Always                    3
## 503                                  Always                    3
## 504                                  Always                    3
## 505                                  Always                    3
## 506                                  Always                    3
## 507                                  Always                    3
## 508                               Sometimes                    3
## 509                               Sometimes                   3+
## 510                               Sometimes                   3+
## 511                                  Always                    3
## 512                                  Always                    3
## 513                                  Always                    3
## 514                                  Always                    2
## 515                                  Always                    3
## 516                                  Always                    2
## 517                               Sometimes                    2
## 518                                  Always                    1
## 519                                  Always                    3
## 520                                  Always                    3
## 521                                  Always                    2
## 522                                  Always                    2
## 523                               Sometimes                    1
## 524                                  Always                    1
## 525                                  Always                    3
## 526                                  Always                    1
## 527                                  Always                    1
## 528                                  Always                    1
## 529                                  Always                   3+
## 530                                  Always                    3
## 531                                   Never                   3+
## 532                                  Always                    3
## 533                                  Always                   3+
## 534                                  Always                    3
## 535                                  Always                    3
## 536                                  Always                    3
## 537                                  Always                    3
## 538                               Sometimes                    1
## 539                               Sometimes                    1
## 540                                  Always                    1
## 541                                  Always                   3+
## 542                                  Always                    3
## 543                                  Always                    3
## 544                               Sometimes                    3
## 545                               Sometimes                   3+
## 546                               Sometimes                    3
## 547                                   Never                    3
## 548                                   Never                    3
## 549                               Sometimes                    3
## 550                               Sometimes                   3+
## 551                                  Always                    3
## 552                                  Always                   3+
## 553                               Sometimes                    2
## 554                               Sometimes                   3+
## 555                               Sometimes                    2
## 556                                  Always                    3
## 557                               Sometimes                    3
## 558                                  Always                    3
## 559                                  Always                   3+
## 560                               Sometimes                   3+
## 561                               Sometimes                    3
## 562                                  Always                    3
## 563                                  Always                    3
## 564                                  Always                    3
## 565                                  Always                   3+
## 566                                  Always                   3+
## 567                               Sometimes                   3+
## 568                                  Always                    3
## 569                                  Always                   3+
## 570                                  Always                    3
## 571                                  Always                   3+
## 572                                  Always                   3+
## 573                                  Always                   3+
## 574                                   Never                   3+
## 575                                   Never                   3+
## 576                                   Never                   3+
## 577                                  Always                    3
## 578                                  Always                    1
## 579                                  Always                    1
## 580                               Sometimes                    3
## 581                               Sometimes                    3
## 582                                  Always                    3
## 583                               Sometimes                   3+
## 584                                  Always                    3
## 585                               Sometimes                    3
## 586                               Sometimes                    3
## 587                                   Never                    3
## 588                               Sometimes                   3+
## 589                                   Never                    2
## 590                               Sometimes                    3
## 591                                  Always                    3
## 592                               Sometimes                   3+
## 593                                  Always                   3+
## 594                               Sometimes                   3+
## 595                                  Always                   3+
## 596                                  Always                   3+
## 597                               Sometimes                   3+
## 598                               Sometimes                    3
## 599                               Sometimes                    3
## 600                               Sometimes                    3
## 601                                  Always                    3
## 602                                  Always                    3
## 603                                  Always                    3
## 604                                  Always                    1
## 605                                  Always                    1
## 606                                  Always                    1
## 607                                   Never                    3
## 608                               Sometimes                    3
## 609                               Sometimes                    3
## 610                               Sometimes                    3
## 611                                  Always                    3
## 612                                  Always                    3
## 613                               Sometimes                    2
## 614                                  Always                    3
## 615                                  Always                    1
## 616                                  Always                    1
## 617                                  Always                   3+
## 618                                  Always                   3+
## 619                                  Always                    3
## 620                               Sometimes                    1
## 621                                  Always                    3
## 622                               Sometimes                    3
## 623                                   Never                    3
## 624                                  Always                   3+
## 625                               Sometimes                    2
## 626                                  Always                    3
## 627                               Sometimes                   3+
## 628                                  Always                    3
## 629                               Sometimes                   3+
## 630                               Sometimes                    3
## 631                                  Always                   3+
## 632                                   Never                   3+
## 633                                  Always                    3
## 634                                  Always                    3
## 635                               Sometimes                    3
## 636                               Sometimes                    3
## 637                               Sometimes                    2
## 638                                  Always                   3+
## 639                                  Always                   3+
## 640                               Sometimes                    3
## 641                                  Always                    3
## 642                                  Always                    1
## 643                               Sometimes                    3
## 644                               Sometimes                   3+
## 645                               Sometimes                   3+
## 646                               Sometimes                   3+
## 647                                  Always                    3
## 648                                  Always                    3
## 649                                  Always                    3
## 650                                  Always                    2
## 651                                  Always                    3
## 652                                  Always                    2
## 653                               Sometimes                    1
## 654                                  Always                    2
## 655                                  Always                    2
## 656                                  Always                    3
## 657                                  Always                    2
## 658                                  Always                    2
## 659                                  Always                    1
## 660                                  Always                    1
## 661                                  Always                    3
## 662                                  Always                    1
## 663                                  Always                    1
## 664                                  Always                    1
## 665                                  Always                   3+
## 666                                  Always                    3
## 667                                   Never                    3
## 668                                  Always                    3
## 669                                  Always                   3+
## 670                                  Always                    3
## 671                                  Always                    3
## 672                                  Always                    3
## 673                                  Always                    3
## 674                                  Always                    1
## 675                               Sometimes                    1
## 676                                  Always                    1
## 677                                  Always                    3
## 678                                  Always                    3
## 679                                  Always                    3
## 680                                  Always                    3
## 681                               Sometimes                   3+
## 682                                  Always                    3
## 683                                   Never                    3
## 684                                   Never                    3
## 685                                  Always                    3
## 686                               Sometimes                    3
## 687                                  Always                    3
## 688                                  Always                   3+
## 689                               Sometimes                    3
## 690                               Sometimes                    3
## 691                               Sometimes                    3
## 692                                  Always                    3
## 693                                  Always                    3
## 694                                  Always                    3
## 695                                  Always                   3+
## 696                                  Always                    3
## 697                               Sometimes                   3+
## 698                                  Always                    3
## 699                                  Always                    3
## 700                                  Always                    3
## 701                                  Always                   3+
## 702                                  Always                   3+
## 703                               Sometimes                   3+
## 704                                  Always                    3
## 705                                  Always                   3+
## 706                                  Always                    3
## 707                                  Always                   3+
## 708                               Sometimes                   3+
## 709                               Sometimes                    3
## 710                               Sometimes                    3
## 711                                   Never                   3+
## 712                                   Never                   3+
## 713                                  Always                    3
## 714                                  Always                    1
## 715                                  Always                    1
## 716                               Sometimes                    3
## 717                                  Always                   3+
## 718                                  Always                   3+
## 719                                  Always                   3+
## 720                                  Always                    3
## 721                               Sometimes                    3
## 722                               Sometimes                    3
## 723                               Sometimes                    3
## 724                                   Never                    3
## 725                               Sometimes                    2
## 726                                   Never                    3
## 727                                  Always                    3
## 728                               Sometimes                   3+
## 729                                  Always                   3+
## 730                               Sometimes                   3+
## 731                                  Always                   3+
## 732                                  Always                    3
## 733                               Sometimes                   3+
## 734                               Sometimes                    3
## 735                                   Never                    3
## 736                               Sometimes                    3
## 737                                  Always                    3
## 738                                  Always                    3
## 739                                  Always                    3
## 740                                  Always                    1
## 741                                  Always                    1
## 742                                  Always                    1
## 743                                   Never                    3
## 744                               Sometimes                    3
## 745                               Sometimes                    3
## 746                               Sometimes                    2
## 747                               Sometimes                    1
## 748                                   Never                   3+
## 749                               Sometimes                   3+
## 750                                   Never                    3
## 751                               Sometimes                    3
## 752                                  Always                    3
## 753                               Sometimes                    3
## 754                               Sometimes                    3
## 755                               Sometimes                    2
## 756                               Sometimes                    3
## 757                                  Always                    1
## 758                               Sometimes                   3+
## 759                               Sometimes                    2
## 760                               Sometimes                    2
## 761                               Sometimes                    3
## 762                                  Always                    1
## 763                               Sometimes                    1
## 764                               Sometimes                    1
## 765                               Sometimes                    1
## 766                               Sometimes                    3
## 767                                  Always                    1
## 768                                  Always                   3+
## 769                                  Always                    3
## 770                               Sometimes                    3
## 771                               Sometimes                   3+
## 772                               Sometimes                    3
## 773                                  Always                    3
## 774                               Sometimes                    3
## 775                                  Always                    1
## 776                               Sometimes                    3
## 777                               Sometimes                    3
## 778                               Sometimes                    3
## 779                               Sometimes                   3+
## 780                                  Always                    3
## 781                               Sometimes                    3
## 782                                  Always                    3
## 783                               Sometimes                    3
## 784                                  Always                   3+
## 785                               Sometimes                    1
## 786                                  Always                    1
## 787                               Sometimes                    3
## 788                                  Always                    3
## 789                               Sometimes                    3
## 790                               Sometimes                    3
## 791                               Sometimes                    1
## 792                               Sometimes                    1
## 793                               Sometimes                    2
## 794                                  Always                    3
## 795                                  Always                    2
## 796                                  Always                    3
## 797                               Sometimes                    3
## 798                               Sometimes                    3
## 799                               Sometimes                   3+
## 800                               Sometimes                    1
## 801                               Sometimes                    1
## 802                                  Always                    3
## 803                                  Always                    3
## 804                                  Always                    3
## 805                                  Always                    2
## 806                               Sometimes                    1
## 807                               Sometimes                    1
## 808                                   Never                   3+
## 809                               Sometimes                    3
## 810                               Sometimes                   3+
## 811                                   Never                   3+
## 812                               Sometimes                    3
## 813                               Sometimes                    3
## 814                                  Always                    3
## 815                               Sometimes                    3
## 816                               Sometimes                    3
## 817                               Sometimes                    3
## 818                               Sometimes                    3
## 819                               Sometimes                    2
## 820                               Sometimes                    3
## 821                                  Always                    1
## 822                               Sometimes                    2
## 823                               Sometimes                   3+
## 824                               Sometimes                   3+
## 825                               Sometimes                    1
## 826                               Sometimes                    1
## 827                                  Always                    3
## 828                                  Always                    3
## 829                               Sometimes                    1
## 830                                  Always                    1
## 831                               Sometimes                    1
## 832                               Sometimes                    1
## 833                               Sometimes                    1
## 834                               Sometimes                    1
## 835                               Sometimes                    1
## 836                               Sometimes                    3
## 837                                  Always                    3
## 838                                  Always                    1
## 839                               Sometimes                    1
## 840                                  Always                    3
## 841                                  Always                    3
## 842                               Sometimes                    3
## 843                                  Always                    3
## 844                               Sometimes                   3+
## 845                               Sometimes                    3
## 846                               Sometimes                   3+
## 847                               Sometimes                    2
## 848                                  Always                    2
## 849                               Sometimes                   3+
## 850                               Sometimes                   3+
## 851                               Sometimes                    3
## 852                                  Always                    1
## 853                                  Always                    1
## 854                                   Never                    1
## 855                               Sometimes                    3
## 856                               Sometimes                    3
## 857                               Sometimes                    3
## 858                                   Never                   3+
## 859                               Sometimes                    3
## 860                                  Always                    3
## 861                                  Always                    3
## 862                               Sometimes                    3
## 863                               Sometimes                    3
## 864                               Sometimes                    3
## 865                                  Always                    3
## 866                               Sometimes                    3
## 867                               Sometimes                    3
## 868                                  Always                    1
## 869                                  Always                    2
## 870                               Sometimes                    2
## 871                                  Always                    3
## 872                               Sometimes                    2
## 873                               Sometimes                    1
## 874                               Sometimes                    3
## 875                                  Always                    1
## 876                                   Never                    1
## 877                                   Never                    1
## 878                               Sometimes                    1
## 879                               Sometimes                    3
## 880                                  Always                    3
## 881                                  Always                    3
## 882                                  Always                    3
## 883                                  Always                    3
## 884                               Sometimes                    3
## 885                               Sometimes                    1
## 886                               Sometimes                    1
## 887                               Sometimes                    3
## 888                                  Always                   3+
## 889                               Sometimes                    3
## 890                               Sometimes                    3
## 891                               Sometimes                    1
## 892                               Sometimes                    3
## 893                               Sometimes                    2
## 894                               Sometimes                    2
## 895                                  Always                    3
## 896                               Sometimes                    1
## 897                               Sometimes                    1
## 898                                  Always                    3
## 899                               Sometimes                    3
## 900                               Sometimes                   3+
## 901                                   Never                    3
## 902                               Sometimes                   3+
## 903                                  Always                    3
## 904                               Sometimes                    3
## 905                               Sometimes                    3
## 906                               Sometimes                    3
## 907                               Sometimes                    3
## 908                               Sometimes                    1
## 909                               Sometimes                    3
## 910                               Sometimes                    3
## 911                                  Always                    1
## 912                               Sometimes                    3
## 913                                   Never                    3
## 914                               Sometimes                    3
## 915                               Sometimes                    1
## 916                                  Always                    3
## 917                               Sometimes                    3
## 918                               Sometimes                    3
## 919                               Sometimes                    1
## 920                               Sometimes                    1
## 921                               Sometimes                    1
## 922                               Sometimes                    1
## 923                               Sometimes                    1
## 924                               Sometimes                    1
## 925                               Sometimes                    3
## 926                               Sometimes                    3
## 927                                  Always                    1
## 928                                  Always                    3
## 929                                  Always                    3
## 930                               Sometimes                    3
## 931                               Sometimes                    3
## 932                               Sometimes                   3+
## 933                                  Always                    3
## 934                               Sometimes                    3
## 935                               Sometimes                   3+
## 936                               Sometimes                    3
## 937                               Sometimes                    3
## 938                               Sometimes                    2
## 939                                  Always                    1
## 940                               Sometimes                    3
## 941                               Sometimes                    3
## 942                               Sometimes                    3
## 943                               Sometimes                    3
## 944                               Sometimes                    3
## 945                               Sometimes                    3
## 946                               Sometimes                    3
## 947                                  Always                    3
## 948                                  Always                    3
## 949                               Sometimes                    3
## 950                                  Always                    3
## 951                                  Always                   3+
## 952                               Sometimes                    2
## 953                               Sometimes                    2
## 954                               Sometimes                    1
## 955                               Sometimes                    3
## 956                                  Always                    2
## 957                               Sometimes                    3
## 958                               Sometimes                    3
## 959                               Sometimes                    1
## 960                               Sometimes                    1
## 961                               Sometimes                    1
## 962                               Sometimes                    1
## 963                                  Always                    3
## 964                                  Always                    3
## 965                                  Always                    2
## 966                                  Always                    2
## 967                               Sometimes                   3+
## 968                                  Always                    3
## 969                               Sometimes                    3
## 970                               Sometimes                    3
## 971                               Sometimes                   3+
## 972                                  Always                   3+
## 973                               Sometimes                    2
## 974                               Sometimes                    1
## 975                                  Always                    3
## 976                                  Always                    3
## 977                                  Always                    3
## 978                               Sometimes                    1
## 979                               Sometimes                    2
## 980                               Sometimes                    3
## 981                               Sometimes                    2
## 982                               Sometimes                    2
## 983                               Sometimes                    3
## 984                               Sometimes                    3
## 985                               Sometimes                    3
## 986                               Sometimes                    3
## 987                               Sometimes                    2
## 988                                  Always                    1
## 989                               Sometimes                    3
## 990                               Sometimes                    3
## 991                               Sometimes                    3
## 992                                  Always                    3
## 993                               Sometimes                    3
## 994                                  Always                    3
## 995                               Sometimes                    2
## 996                               Sometimes                    2
## 997                               Sometimes                    3
## 998                               Sometimes                    2
## 999                               Sometimes                    3
## 1000                              Sometimes                    3
## 1001                                 Always                    3
## 1002                              Sometimes                    3
## 1003                              Sometimes                    3
## 1004                                 Always                    3
## 1005                              Sometimes                    3
## 1006                              Sometimes                    3
## 1007                                  Never                    2
## 1008                              Sometimes                    1
## 1009                                 Always                    3
## 1010                              Sometimes                    3
## 1011                                 Always                    3
## 1012                              Sometimes                    2
## 1013                              Sometimes                    3
## 1014                              Sometimes                    3
## 1015                                 Always                    3
## 1016                              Sometimes                    3
## 1017                                 Always                    2
## 1018                              Sometimes                    3
## 1019                              Sometimes                    2
## 1020                              Sometimes                    1
## 1021                              Sometimes                    1
## 1022                              Sometimes                    1
## 1023                              Sometimes                   3+
## 1024                              Sometimes                    3
## 1025                              Sometimes                    2
## 1026                                 Always                    3
## 1027                              Sometimes                    3
## 1028                                 Always                    3
## 1029                                 Always                    2
## 1030                                 Always                    3
## 1031                              Sometimes                    2
## 1032                                 Always                    3
## 1033                                 Always                   3+
## 1034                              Sometimes                    2
## 1035                              Sometimes                    3
## 1036                              Sometimes                    3
## 1037                                 Always                    3
## 1038                                 Always                    1
## 1039                                 Always                    2
## 1040                              Sometimes                    3
## 1041                              Sometimes                    3
## 1042                                 Always                    3
## 1043                              Sometimes                    1
## 1044                                 Always                    1
## 1045                                 Always                    3
## 1046                              Sometimes                    2
## 1047                                 Always                    2
## 1048                              Sometimes                    3
## 1049                              Sometimes                    3
## 1050                              Sometimes                    3
## 1051                                 Always                    1
## 1052                              Sometimes                    3
## 1053                              Sometimes                    3
## 1054                                 Always                    3
## 1055                              Sometimes                    1
## 1056                              Sometimes                    3
## 1057                                  Never                    2
## 1058                              Sometimes                    3
## 1059                              Sometimes                   3+
## 1060                              Sometimes                    3
## 1061                                 Always                    2
## 1062                                 Always                    3
## 1063                              Sometimes                    2
## 1064                                 Always                    3
## 1065                              Sometimes                    2
## 1066                              Sometimes                    3
## 1067                              Sometimes                    1
## 1068                                 Always                    3
## 1069                              Sometimes                    3
## 1070                              Sometimes                    3
## 1071                              Sometimes                    2
## 1072                              Sometimes                    3
## 1073                              Sometimes                    3
## 1074                              Sometimes                    3
## 1075                                  Never                    2
## 1076                              Sometimes                    3
## 1077                              Sometimes                    3
## 1078                              Sometimes                    3
## 1079                              Sometimes                    2
## 1080                                 Always                    3
## 1081                                 Always                    3
## 1082                              Sometimes                    3
## 1083                                 Always                    3
## 1084                                  Never                    2
## 1085                              Sometimes                    3
## 1086                                 Always                    3
## 1087                              Sometimes                    3
## 1088                                 Always                    2
## 1089                              Sometimes                    3
## 1090                                 Always                    3
## 1091                              Sometimes                    3
## 1092                              Sometimes                    3
## 1093                              Sometimes                    1
## 1094                              Sometimes                    1
## 1095                              Sometimes                    1
## 1096                              Sometimes                    2
## 1097                                 Always                    3
## 1098                                 Always                    1
## 1099                              Sometimes                    2
## 1100                                 Always                    2
## 1101                                  Never                    2
## 1102                              Sometimes                    3
## 1103                              Sometimes                    3
## 1104                                 Always                    2
## 1105                                 Always                    3
## 1106                              Sometimes                    3
## 1107                              Sometimes                    1
## 1108                              Sometimes                    3
## 1109                                 Always                    3
## 1110                              Sometimes                    2
## 1111                                 Always                    3
## 1112                              Sometimes                    3
## 1113                                 Always                    1
## 1114                                 Always                    3
## 1115                              Sometimes                    3
## 1116                                 Always                    3
## 1117                              Sometimes                    3
## 1118                              Sometimes                    1
## 1119                                 Always                    3
## 1120                              Sometimes                    3
## 1121                                 Always                    3
## 1122                                 Always                    1
## 1123                              Sometimes                    1
## 1124                              Sometimes                    3
## 1125                              Sometimes                    3
## 1126                              Sometimes                    3
## 1127                              Sometimes                    2
## 1128                              Sometimes                    3
## 1129                              Sometimes                    3
## 1130                              Sometimes                    3
## 1131                              Sometimes                    3
## 1132                              Sometimes                    3
## 1133                                 Always                    1
## 1134                              Sometimes                    3
## 1135                              Sometimes                    2
## 1136                              Sometimes                    2
## 1137                              Sometimes                    3
## 1138                                 Always                    3
## 1139                              Sometimes                    3
## 1140                              Sometimes                    3
## 1141                              Sometimes                    2
## 1142                              Sometimes                    3
## 1143                              Sometimes                    2
## 1144                              Sometimes                    3
## 1145                              Sometimes                    3
## 1146                                 Always                    3
## 1147                              Sometimes                    3
## 1148                              Sometimes                    3
## 1149                                 Always                    3
## 1150                              Sometimes                    3
## 1151                              Sometimes                    1
## 1152                                  Never                    3
## 1153                              Sometimes                    2
## 1154                              Sometimes                    3
## 1155                              Sometimes                    2
## 1156                              Sometimes                    3
## 1157                              Sometimes                    3
## 1158                              Sometimes                    3
## 1159                              Sometimes                    3
## 1160                                 Always                    3
## 1161                              Sometimes                    3
## 1162                              Sometimes                    2
## 1163                                 Always                    3
## 1164                              Sometimes                    3
## 1165                              Sometimes                    1
## 1166                              Sometimes                    1
## 1167                              Sometimes                    1
## 1168                              Sometimes                    3
## 1169                              Sometimes                    3
## 1170                              Sometimes                    3
## 1171                                 Always                    3
## 1172                                 Always                    3
## 1173                                 Always                    2
## 1174                              Sometimes                    2
## 1175                              Sometimes                    2
## 1176                              Sometimes                    2
## 1177                                 Always                    3
## 1178                                 Always                   3+
## 1179                              Sometimes                    3
## 1180                                 Always                    3
## 1181                              Sometimes                    3
## 1182                                 Always                    3
## 1183                              Sometimes                    2
## 1184                                 Always                    2
## 1185                              Sometimes                    3
## 1186                              Sometimes                    1
## 1187                                 Always                    3
## 1188                              Sometimes                    1
## 1189                                 Always                    3
## 1190                                 Always                    3
## 1191                              Sometimes                    3
## 1192                                 Always                    3
## 1193                              Sometimes                    3
## 1194                              Sometimes                    3
## 1195                              Sometimes                    3
## 1196                                 Always                    1
## 1197                              Sometimes                    2
## 1198                              Sometimes                    2
## 1199                                 Always                    3
## 1200                              Sometimes                    2
## 1201                              Sometimes                    3
## 1202                              Sometimes                    2
## 1203                              Sometimes                    3
## 1204                                 Always                    3
## 1205                              Sometimes                    3
## 1206                                 Always                    2
## 1207                                 Always                    3
## 1208                              Sometimes                    1
## 1209                              Sometimes                    3
## 1210                                 Always                    3
## 1211                                 Always                    3
## 1212                              Sometimes                    3
## 1213                              Sometimes                    2
## 1214                              Sometimes                    2
## 1215                              Sometimes                    1
## 1216                                 Always                    1
## 1217                              Sometimes                    3
## 1218                                  Never                    1
## 1219                                 Always                    1
## 1220                              Sometimes                    3
## 1221                              Sometimes                    1
## 1222                                 Always                    1
## 1223                              Sometimes                    3
## 1224                              Sometimes                    3
## 1225                              Sometimes                    3
## 1226                              Sometimes                    3
## 1227                                 Always                    1
## 1228                                 Always                    3
## 1229                                 Always                    3
## 1230                              Sometimes                    3
## 1231                              Sometimes                    3
## 1232                                 Always                    1
## 1233                              Sometimes                    2
## 1234                              Sometimes                    3
## 1235                              Sometimes                    3
## 1236                              Sometimes                    3
## 1237                              Sometimes                    3
## 1238                              Sometimes                    1
## 1239                                  Never                    3
## 1240                              Sometimes                    3
## 1241                                 Always                    1
## 1242                              Sometimes                    1
## 1243                              Sometimes                    3
## 1244                              Sometimes                    3
## 1245                              Sometimes                    1
## 1246                              Sometimes                    3
## 1247                              Sometimes                    3
## 1248                              Sometimes                    1
## 1249                              Sometimes                    3
## 1250                              Sometimes                    2
## 1251                              Sometimes                    3
## 1252                              Sometimes                    3
## 1253                              Sometimes                    3
## 1254                                 Always                    3
## 1255                              Sometimes                    3
## 1256                              Sometimes                    3
## 1257                              Sometimes                    1
## 1258                              Sometimes                    1
## 1259                                  Never                    3
## 1260                                 Always                    1
## 1261                              Sometimes                    3
## 1262                              Sometimes                    3
## 1263                              Sometimes                    3
## 1264                              Sometimes                    2
## 1265                              Sometimes                    3
## 1266                              Sometimes                    3
## 1267                              Sometimes                    3
## 1268                              Sometimes                    3
## 1269                              Sometimes                    2
## 1270                              Sometimes                    2
## 1271                              Sometimes                    3
## 1272                                 Always                    3
## 1273                                  Never                    3
## 1274                              Sometimes                    3
## 1275                              Sometimes                    3
## 1276                              Sometimes                    3
## 1277                              Sometimes                    2
## 1278                                 Always                    3
## 1279                              Sometimes                    3
## 1280                                 Always                    3
## 1281                                 Always                    3
## 1282                              Sometimes                    3
## 1283                              Sometimes                    2
## 1284                              Sometimes                    2
## 1285                              Sometimes                    1
## 1286                                 Always                    2
## 1287                              Sometimes                    1
## 1288                              Sometimes                    1
## 1289                                  Never                    1
## 1290                              Sometimes                    3
## 1291                              Sometimes                    3
## 1292                              Sometimes                    3
## 1293                              Sometimes                    3
## 1294                              Sometimes                    3
## 1295                              Sometimes                    3
## 1296                              Sometimes                    3
## 1297                                 Always                    1
## 1298                              Sometimes                    3
## 1299                              Sometimes                    3
## 1300                              Sometimes                    1
## 1301                                 Always                    1
## 1302                                 Always                    3
## 1303                              Sometimes                    3
## 1304                                 Always                    3
## 1305                                 Always                    3
## 1306                              Sometimes                    3
## 1307                              Sometimes                    3
## 1308                              Sometimes                    3
## 1309                              Sometimes                    3
## 1310                              Sometimes                    3
## 1311                                 Always                    3
## 1312                              Sometimes                    2
## 1313                                 Always                    2
## 1314                              Sometimes                    3
## 1315                              Sometimes                    3
## 1316                                 Always                    2
## 1317                              Sometimes                    2
## 1318                              Sometimes                    3
## 1319                              Sometimes                    3
## 1320                                 Always                    1
## 1321                              Sometimes                    2
## 1322                              Sometimes                    3
## 1323                                 Always                    2
## 1324                              Sometimes                    1
## 1325                              Sometimes                    1
## 1326                              Sometimes                    3
## 1327                              Sometimes                    3
## 1328                              Sometimes                    3
## 1329                              Sometimes                    3
## 1330                              Sometimes                    1
## 1331                              Sometimes                    1
## 1332                              Sometimes                    3
## 1333                              Sometimes                    3
## 1334                              Sometimes                    1
## 1335                              Sometimes                    1
## 1336                              Sometimes                    2
## 1337                              Sometimes                    3
## 1338                              Sometimes                    3
## 1339                                  Never                    3
## 1340                              Sometimes                    3
## 1341                              Sometimes                    3
## 1342                              Sometimes                    3
## 1343                              Sometimes                    3
## 1344                              Sometimes                    2
## 1345                              Sometimes                    2
## 1346                                 Always                    3
## 1347                                 Always                    3
## 1348                                 Always                    3
## 1349                              Sometimes                    3
## 1350                              Sometimes                    3
## 1351                              Sometimes                    3
## 1352                              Sometimes                    1
## 1353                              Sometimes                    1
## 1354                              Sometimes                    2
## 1355                              Sometimes                    3
## 1356                              Sometimes                    3
## 1357                              Sometimes                    3
## 1358                              Sometimes                    2
## 1359                              Sometimes                    2
## 1360                              Sometimes                    2
## 1361                              Sometimes                    2
## 1362                                 Always                    3
## 1363                              Sometimes                    3
## 1364                              Sometimes                    1
## 1365                              Sometimes                    3
## 1366                                 Always                    3
## 1367                              Sometimes                    3
## 1368                              Sometimes                    2
## 1369                              Sometimes                    2
## 1370                              Sometimes                    3
## 1371                                 Always                    3
## 1372                              Sometimes                    3
## 1373                              Sometimes                    3
## 1374                                 Always                    3
## 1375                                 Always                    3
## 1376                                 Always                    3
## 1377                                 Always                    3
## 1378                                 Always                    3
## 1379                                 Always                    2
## 1380                                 Always                    2
## 1381                              Sometimes                    2
## 1382                              Sometimes                    2
## 1383                              Sometimes                    1
## 1384                              Sometimes                    1
## 1385                              Sometimes                    1
## 1386                                 Always                    1
## 1387                              Sometimes                    3
## 1388                                 Always                    1
## 1389                              Sometimes                    3
## 1390                              Sometimes                    1
## 1391                              Sometimes                    1
## 1392                                 Always                    1
## 1393                                 Always                    1
## 1394                              Sometimes                    3
## 1395                              Sometimes                    3
## 1396                                 Always                    1
## 1397                              Sometimes                    1
## 1398                              Sometimes                    3
## 1399                              Sometimes                    2
## 1400                              Sometimes                    3
## 1401                              Sometimes                    1
## 1402                              Sometimes                    3
## 1403                              Sometimes                    3
## 1404                              Sometimes                    3
## 1405                              Sometimes                    3
## 1406                              Sometimes                    3
## 1407                              Sometimes                    3
## 1408                                 Always                    1
## 1409                                 Always                    1
## 1410                                 Always                    3
## 1411                                 Always                    3
## 1412                                 Always                    3
## 1413                                 Always                    3
## 1414                              Sometimes                    3
## 1415                              Sometimes                    3
## 1416                                  Never                    3
## 1417                                  Never                    3
## 1418                                 Always                    1
## 1419                                 Always                    2
## 1420                                 Always                    2
## 1421                              Sometimes                    2
## 1422                              Sometimes                    3
## 1423                              Sometimes                    3
## 1424                                 Always                    2
## 1425                                 Always                    1
## 1426                              Sometimes                    3
## 1427                              Sometimes                    3
## 1428                              Sometimes                    3
## 1429                              Sometimes                    3
## 1430                              Sometimes                    2
## 1431                              Sometimes                    2
## 1432                              Sometimes                    3
## 1433                                  Never                    1
## 1434                              Sometimes                    3
## 1435                              Sometimes                    3
## 1436                                  Never                    1
## 1437                                 Always                    1
## 1438                                 Always                    1
## 1439                              Sometimes                    1
## 1440                              Sometimes                    3
## 1441                              Sometimes                    3
## 1442                              Sometimes                    3
## 1443                              Sometimes                    3
## 1444                              Sometimes                    1
## 1445                              Sometimes                    1
## 1446                              Sometimes                    3
## 1447                              Sometimes                    3
## 1448                              Sometimes                    3
## 1449                              Sometimes                    3
## 1450                              Sometimes                    1
## 1451                              Sometimes                    1
## 1452                              Sometimes                    3
## 1453                              Sometimes                    3
## 1454                              Sometimes                    2
## 1455                              Sometimes                    2
## 1456                                 Always                    3
## 1457                              Sometimes                    3
## 1458                              Sometimes                    3
## 1459                              Sometimes                    3
## 1460                              Sometimes                    3
## 1461                              Sometimes                    3
## 1462                              Sometimes                    3
## 1463                              Sometimes                    3
## 1464                              Sometimes                    3
## 1465                              Sometimes                    3
## 1466                              Sometimes                    3
## 1467                              Sometimes                    3
## 1468                              Sometimes                    1
## 1469                              Sometimes                    1
## 1470                              Sometimes                    1
## 1471                              Sometimes                    1
## 1472                                 Always                    3
## 1473                                  Never                    3
## 1474                              Sometimes                    1
## 1475                                 Always                    1
## 1476                                 Always                    3
## 1477                              Sometimes                    3
## 1478                              Sometimes                    2
## 1479                              Sometimes                    2
## 1480                              Sometimes                    3
## 1481                              Sometimes                    3
## 1482                              Sometimes                    1
## 1483                              Sometimes                    2
## 1484                              Sometimes                    3
## 1485                              Sometimes                    3
## 1486                              Sometimes                    3
## 1487                              Sometimes                    3
## 1488                              Sometimes                    3
## 1489                              Sometimes                    3
## 1490                              Sometimes                    3
## 1491                              Sometimes                    3
## 1492                              Sometimes                    2
## 1493                              Sometimes                    3
## 1494                              Sometimes                    2
## 1495                              Sometimes                    2
## 1496                              Sometimes                    3
## 1497                              Sometimes                    3
## 1498                                 Always                    3
## 1499                              Sometimes                    3
## 1500                                  Never                    3
## 1501                              Sometimes                    3
## 1502                                  Never                    3
## 1503                              Sometimes                    3
## 1504                                 Always                    3
## 1505                              Sometimes                    3
## 1506                              Sometimes                    3
## 1507                              Sometimes                    3
## 1508                              Sometimes                    2
## 1509                              Sometimes                    1
## 1510                                  Never                    3
## 1511                                 Always                    3
## 1512                              Sometimes                    3
## 1513                              Sometimes                    3
## 1514                              Sometimes                    3
## 1515                              Sometimes                    3
## 1516                                 Always                   3+
## 1517                                 Always                    2
## 1518                              Sometimes                    3
## 1519                              Sometimes                    3
## 1520                              Sometimes                    3
## 1521                                 Always                    3
## 1522                              Sometimes                    3
## 1523                              Sometimes                    3
## 1524                                 Always                    3
## 1525                              Sometimes                    3
## 1526                                 Always                    3
## 1527                                 Always                    3
## 1528                                  Never                    3
## 1529                                  Never                    3
## 1530                              Sometimes                    3
## 1531                                 Always                    1
## 1532                                 Always                    3
## 1533                                 Always                    3
## 1534                                 Always                    2
## 1535                                 Always                    1
## 1536                              Sometimes                    3
## 1537                                  Never                    3
## 1538                                 Always                   3+
## 1539                                 Always                    3
## 1540                              Sometimes                    3
## 1541                              Sometimes                    3
## 1542                              Sometimes                    3
## 1543                                 Always                    3
## 1544                              Sometimes                    3
## 1545                              Sometimes                    3
## 1546                              Sometimes                    3
## 1547                                 Always                    3
## 1548                                 Always                    3
## 1549                                 Always                    3
## 1550                              Sometimes                    3
## 1551                              Sometimes                    3
## 1552                              Sometimes                   3+
## 1553                                 Always                    2
## 1554                                 Always                    2
## 1555                                 Always                    2
## 1556                                 Always                    1
## 1557                                 Always                    1
## 1558                              Sometimes                    3
## 1559                                  Never                    3
## 1560                              Sometimes                    3
## 1561                              Sometimes                    3
## 1562                              Sometimes                   3+
## 1563                              Sometimes                    3
## 1564                                 Always                    2
## 1565                                 Always                    2
## 1566                                 Always                    3
## 1567                              Sometimes                    3
## 1568                              Sometimes                    3
## 1569                              Sometimes                    3
## 1570                              Sometimes                    3
## 1571                              Sometimes                    3
## 1572                              Sometimes                    3
## 1573                                 Always                    3
## 1574                              Sometimes                    3
## 1575                              Sometimes                    3
## 1576                              Sometimes                    3
## 1577                              Sometimes                    3
## 1578                              Sometimes                    3
## 1579                                 Always                    3
## 1580                                 Always                    3
## 1581                              Sometimes                    3
## 1582                                 Always                    3
## 1583                              Sometimes                    3
## 1584                                 Always                    3
## 1585                              Sometimes                    3
## 1586                                  Never                    3
## 1587                              Sometimes                    3
## 1588                              Sometimes                    3
## 1589                                  Never                    3
## 1590                              Sometimes                    3
## 1591                              Sometimes                    3
## 1592                                 Always                    1
## 1593                                 Always                    2
## 1594                                 Always                    3
## 1595                                 Always                    3
## 1596                                 Always                    3
## 1597                                 Always                    3
## 1598                                 Always                    2
## 1599                                 Always                    2
## 1600                                 Always                    1
## 1601                                 Always                    1
## 1602                              Sometimes                    3
## 1603                                  Never                    3
## 1604                                 Always                   3+
## 1605                                 Always                    3
## 1606                              Sometimes                    3
## 1607                              Sometimes                    3
## 1608                              Sometimes                    3
## 1609                                 Always                    3
## 1610                              Sometimes                    3
## 1611                              Sometimes                    3
## 1612                                 Always                    3
## 1613                              Sometimes                    3
## 1614                                 Always                    3
## 1615                                 Always                    3
## 1616                              Sometimes                    3
## 1617                              Sometimes                    3
## 1618                              Sometimes                    3
## 1619                              Sometimes                    3
## 1620                                 Always                    2
## 1621                                 Always                    2
## 1622                                 Always                    1
## 1623                                 Always                    1
## 1624                              Sometimes                    3
## 1625                              Sometimes                    3
## 1626                              Sometimes                    3
## 1627                              Sometimes                    3
## 1628                              Sometimes                   3+
## 1629                                 Always                    3
## 1630                                 Always                    2
## 1631                                 Always                    2
## 1632                              Sometimes                    3
## 1633                              Sometimes                    3
## 1634                              Sometimes                    3
## 1635                              Sometimes                    3
## 1636                              Sometimes                    3
## 1637                              Sometimes                    3
## 1638                              Sometimes                    3
## 1639                                 Always                    3
## 1640                              Sometimes                    3
## 1641                              Sometimes                    3
## 1642                              Sometimes                    3
## 1643                              Sometimes                    3
## 1644                                 Always                    3
## 1645                                 Always                    3
## 1646                                 Always                    3
## 1647                              Sometimes                    3
## 1648                                 Always                    3
## 1649                                 Always                    3
## 1650                                 Always                    3
## 1651                                 Always                    3
## 1652                                  Never                    3
## 1653                              Sometimes                    3
## 1654                              Sometimes                    3
## 1655                                  Never                    3
## 1656                              Sometimes                    3
## 1657                              Sometimes                    3
## 1658                                 Always                    1
## 1659                                 Always                    2
## 1660                                 Always                    3
## 1661                                 Always                    3
## 1662                                 Always                    3
## 1663                                 Always                    3
## 1664                                 Always                    2
## 1665                                 Always                    2
## 1666                                 Always                    2
## 1667                                 Always                    2
## 1668                              Sometimes                    3
## 1669                              Sometimes                    3
## 1670                                  Never                    3
## 1671                                  Never                    3
## 1672                                 Always                    2
## 1673                                 Always                    2
## 1674                                 Always                    2
## 1675                                 Always                    2
## 1676                              Sometimes                    3
## 1677                              Sometimes                    3
## 1678                              Sometimes                    3
## 1679                                 Always                    3
## 1680                              Sometimes                    3
## 1681                                 Always                    3
## 1682                                 Always                    3
## 1683                                 Always                    3
## 1684                              Sometimes                    3
## 1685                                  Never                    3
## 1686                              Sometimes                    3
## 1687                              Sometimes                    3
## 1688                                 Always                    3
## 1689                              Sometimes                    3
## 1690                                 Always                    3
## 1691                                 Always                    3
## 1692                                 Always                    3
## 1693                              Sometimes                    3
## 1694                                 Always                    3
## 1695                                 Always                    3
## 1696                                  Never                    3
## 1697                              Sometimes                    3
## 1698                              Sometimes                    3
## 1699                              Sometimes                    3
## 1700                              Sometimes                   3+
## 1701                                 Always                    3
## 1702                                 Always                    2
## 1703                                 Always                    2
## 1704                                 Always                    2
## 1705                                 Always                    3
## 1706                                 Always                    2
## 1707                                 Always                    3
## 1708                                 Always                    1
## 1709                                 Always                    1
## 1710                                 Always                    1
## 1711                                 Always                    1
## 1712                              Sometimes                    3
## 1713                              Sometimes                    3
## 1714                              Sometimes                    3
## 1715                                  Never                    3
## 1716                              Sometimes                    3
## 1717                              Sometimes                    3
## 1718                              Sometimes                    3
## 1719                              Sometimes                    3
## 1720                                  Never                    3
## 1721                                  Never                   3+
## 1722                              Sometimes                    3
## 1723                              Sometimes                    3
## 1724                                 Always                    2
## 1725                                 Always                    2
## 1726                                 Always                    2
## 1727                                 Always                    1
## 1728                                 Always                    3
## 1729                              Sometimes                    3
## 1730                              Sometimes                    3
## 1731                              Sometimes                    3
## 1732                                 Always                    3
## 1733                                 Always                    3
## 1734                              Sometimes                    3
## 1735                              Sometimes                    3
## 1736                              Sometimes                    3
## 1737                              Sometimes                    3
## 1738                              Sometimes                    3
## 1739                              Sometimes                    3
## 1740                              Sometimes                    3
## 1741                              Sometimes                    3
## 1742                                 Always                    3
## 1743                                 Always                    3
## 1744                              Sometimes                    3
## 1745                              Sometimes                    3
## 1746                              Sometimes                    3
## 1747                              Sometimes                    3
## 1748                              Sometimes                    3
## 1749                              Sometimes                    3
## 1750                              Sometimes                    3
## 1751                              Sometimes                    3
## 1752                              Sometimes                    3
## 1753                                 Always                    3
## 1754                                 Always                    3
## 1755                              Sometimes                    3
## 1756                                 Always                    3
## 1757                                 Always                    3
## 1758                                 Always                    3
## 1759                                 Always                    3
## 1760                                 Always                    3
## 1761                                 Always                    3
## 1762                              Sometimes                    3
## 1763                                 Always                    3
## 1764                              Sometimes                    3
## 1765                              Sometimes                    3
## 1766                              Sometimes                    3
## 1767                                 Always                    3
## 1768                                  Never                    3
## 1769                                  Never                    3
## 1770                              Sometimes                    3
## 1771                              Sometimes                    3
## 1772                              Sometimes                    3
## 1773                              Sometimes                    3
## 1774                                  Never                    3
## 1775                              Sometimes                    3
## 1776                              Sometimes                    3
## 1777                              Sometimes                    3
## 1778                              Sometimes                    3
## 1779                              Sometimes                    3
## 1780                                 Always                    1
## 1781                                 Always                    1
## 1782                                 Always                    2
## 1783                                 Always                    2
## 1784                                 Always                    3
## 1785                                 Always                    3
## 1786                              Sometimes                    3
## 1787                                  Never                    3
## 1788                                 Always                    3
## 1789                                 Always                    3
## 1790                                 Always                    3
## 1791                                 Always                    3
## 1792                                 Always                    2
## 1793                                 Always                    2
## 1794                                 Always                    2
## 1795                                 Always                    2
## 1796                                 Always                    1
## 1797                                 Always                    1
## 1798                                 Always                    1
## 1799                                 Always                    1
## 1800                                 Always                    3
## 1801                                 Always                    3
## 1802                                 Always                    3
## 1803                                 Always                    3
## 1804                                 Always                    3
## 1805                                 Always                    3
## 1806                                 Always                    3
## 1807                                 Always                    3
## 1808                                 Always                    3
## 1809                                 Always                    3
## 1810                                 Always                    3
## 1811                                 Always                    3
## 1812                                 Always                    3
## 1813                                 Always                    3
## 1814                                 Always                    3
## 1815                                 Always                    3
## 1816                                 Always                    3
## 1817                                 Always                    3
## 1818                                 Always                    3
## 1819                                 Always                    3
## 1820                                 Always                    3
## 1821                                 Always                    3
## 1822                                 Always                    3
## 1823                                 Always                    3
## 1824                                 Always                    3
## 1825                                 Always                    3
## 1826                                 Always                    3
## 1827                                 Always                    3
## 1828                                 Always                    3
## 1829                                 Always                    3
## 1830                                 Always                    3
## 1831                                 Always                    3
## 1832                                 Always                    3
## 1833                                 Always                    3
## 1834                                 Always                    3
## 1835                                 Always                    3
## 1836                                 Always                    3
## 1837                                 Always                    3
## 1838                                 Always                    3
## 1839                                 Always                    3
## 1840                                 Always                    3
## 1841                                 Always                    3
## 1842                                 Always                    3
## 1843                                 Always                    3
## 1844                                 Always                    3
## 1845                                 Always                    3
## 1846                                 Always                    3
## 1847                                 Always                    3
## 1848                                 Always                    3
## 1849                                 Always                    3
## 1850                                 Always                    3
## 1851                                 Always                    3
## 1852                                 Always                    3
## 1853                                 Always                    3
## 1854                                 Always                    3
## 1855                                 Always                    3
## 1856                                 Always                    3
## 1857                                 Always                    3
## 1858                                 Always                    3
## 1859                                 Always                    3
## 1860                                 Always                    3
## 1861                                 Always                    3
## 1862                                 Always                    3
## 1863                                 Always                    3
## 1864                                 Always                    3
## 1865                                 Always                    3
## 1866                                 Always                    3
## 1867                                 Always                    3
## 1868                                 Always                    3
## 1869                                 Always                    3
## 1870                                 Always                    3
## 1871                                 Always                    3
## 1872                                 Always                    3
## 1873                                 Always                    3
## 1874                                 Always                    3
## 1875                                 Always                    3
## 1876                                 Always                    3
## 1877                                 Always                    3
## 1878                                 Always                    3
## 1879                                 Always                    3
## 1880                                 Always                    3
## 1881                                 Always                    3
## 1882                                 Always                    3
## 1883                                 Always                    3
## 1884                                 Always                    3
## 1885                                 Always                    3
## 1886                                 Always                    3
## 1887                                 Always                    3
## 1888                                 Always                    3
## 1889                                 Always                    3
## 1890                                 Always                    3
## 1891                                 Always                    3
## 1892                                 Always                    3
## 1893                                 Always                    3
## 1894                                 Always                    3
## 1895                                 Always                    3
## 1896                                 Always                    3
## 1897                                 Always                    3
## 1898                                 Always                    3
## 1899                                 Always                    3
## 1900                                 Always                    3
## 1901                                 Always                    3
## 1902                                 Always                    3
## 1903                                 Always                    3
## 1904                                 Always                    3
## 1905                                 Always                    3
## 1906                                 Always                    3
## 1907                                 Always                    3
## 1908                                 Always                    3
## 1909                                 Always                    3
## 1910                                 Always                    3
## 1911                                 Always                    3
## 1912                                 Always                    3
## 1913                                 Always                    3
## 1914                                 Always                    3
## 1915                                 Always                    3
## 1916                                 Always                    3
## 1917                                 Always                    3
## 1918                                 Always                    3
## 1919                                 Always                    3
## 1920                                 Always                    3
## 1921                                 Always                    3
## 1922                                 Always                    3
## 1923                                 Always                    3
## 1924                                 Always                    3
## 1925                                 Always                    3
## 1926                                 Always                    3
## 1927                                 Always                    3
## 1928                                 Always                    3
## 1929                                 Always                    3
## 1930                                 Always                    3
## 1931                                 Always                    3
## 1932                                 Always                    3
## 1933                                 Always                    3
## 1934                                 Always                    3
## 1935                                 Always                    3
## 1936                                 Always                    3
## 1937                                 Always                    3
## 1938                                 Always                    3
## 1939                                 Always                    3
## 1940                                 Always                    3
## 1941                                 Always                    3
## 1942                                 Always                    3
## 1943                                 Always                    3
## 1944                                 Always                    3
## 1945                                 Always                    3
## 1946                                 Always                    3
## 1947                                 Always                    3
## 1948                                 Always                    3
## 1949                                 Always                    3
## 1950                                 Always                    3
## 1951                                 Always                    3
## 1952                                 Always                    3
## 1953                                 Always                    3
## 1954                                 Always                    3
## 1955                                 Always                    3
## 1956                                 Always                    3
## 1957                                 Always                    3
## 1958                                 Always                    3
## 1959                                 Always                    3
## 1960                                 Always                    3
## 1961                                 Always                    3
## 1962                                 Always                    3
## 1963                                 Always                    3
## 1964                                 Always                    3
## 1965                                 Always                    3
## 1966                                 Always                    3
## 1967                                 Always                    3
## 1968                                 Always                    3
## 1969                                 Always                    3
## 1970                                 Always                    3
## 1971                                 Always                    3
## 1972                                 Always                    3
## 1973                                 Always                    3
## 1974                                 Always                    3
## 1975                                 Always                    3
## 1976                                 Always                    3
## 1977                                 Always                    3
## 1978                                 Always                    3
## 1979                                 Always                    3
## 1980                                 Always                    3
## 1981                                 Always                    3
## 1982                                 Always                    3
## 1983                                 Always                    3
## 1984                                 Always                    3
## 1985                                 Always                    3
## 1986                                 Always                    3
## 1987                                 Always                    3
## 1988                                 Always                    3
## 1989                                 Always                    3
## 1990                                 Always                    3
## 1991                                 Always                    3
## 1992                                 Always                    3
## 1993                                 Always                    3
## 1994                                 Always                    3
## 1995                                 Always                    3
## 1996                                 Always                    3
## 1997                                 Always                    3
## 1998                                 Always                    3
## 1999                                 Always                    3
## 2000                                 Always                    3
## 2001                                 Always                    3
## 2002                                 Always                    3
## 2003                                 Always                    3
## 2004                                 Always                    3
## 2005                                 Always                    3
## 2006                                 Always                    3
## 2007                                 Always                    3
## 2008                                 Always                    3
## 2009                                 Always                    3
## 2010                                 Always                    3
## 2011                                 Always                    3
## 2012                                 Always                    3
## 2013                                 Always                    3
## 2014                                 Always                    3
## 2015                                 Always                    3
## 2016                                 Always                    3
## 2017                                 Always                    3
## 2018                                 Always                    3
## 2019                                 Always                    3
## 2020                                 Always                    3
## 2021                                 Always                    3
## 2022                                 Always                    3
## 2023                                 Always                    3
## 2024                                 Always                    3
## 2025                                 Always                    3
## 2026                                 Always                    3
## 2027                                 Always                    3
## 2028                                 Always                    3
## 2029                                 Always                    3
## 2030                                 Always                    3
## 2031                                 Always                    3
## 2032                                 Always                    3
## 2033                                 Always                    3
## 2034                                 Always                    3
## 2035                                 Always                    3
## 2036                                 Always                    3
## 2037                                 Always                    3
## 2038                                 Always                    3
## 2039                                 Always                    3
## 2040                                 Always                    3
## 2041                                 Always                    3
## 2042                                 Always                    3
## 2043                                 Always                    3
## 2044                                 Always                    3
## 2045                                 Always                    3
## 2046                                 Always                    3
## 2047                                 Always                    3
## 2048                                 Always                    3
## 2049                                 Always                    3
## 2050                                 Always                    3
## 2051                                 Always                    3
## 2052                                 Always                    3
## 2053                                 Always                    3
## 2054                                 Always                    3
## 2055                                 Always                    3
## 2056                                 Always                    3
## 2057                                 Always                    3
## 2058                                 Always                    3
## 2059                                 Always                    3
## 2060                                 Always                    3
## 2061                                 Always                    3
## 2062                                 Always                    3
## 2063                                 Always                    3
## 2064                                 Always                    3
## 2065                                 Always                    3
## 2066                                 Always                    3
## 2067                                 Always                    3
## 2068                                 Always                    3
## 2069                                 Always                    3
## 2070                                 Always                    3
## 2071                                 Always                    3
## 2072                                 Always                    3
## 2073                                 Always                    3
## 2074                                 Always                    3
## 2075                                 Always                    3
## 2076                                 Always                    3
## 2077                                 Always                    3
## 2078                                 Always                    3
## 2079                                 Always                    3
## 2080                                 Always                    3
## 2081                                 Always                    3
## 2082                                 Always                    3
## 2083                                 Always                    3
## 2084                                 Always                    3
## 2085                                 Always                    3
## 2086                                 Always                    3
## 2087                                 Always                    3
## 2088                                 Always                    3
## 2089                                 Always                    3
## 2090                                 Always                    3
## 2091                                 Always                    3
## 2092                                 Always                    3
## 2093                                 Always                    3
## 2094                                 Always                    3
## 2095                                 Always                    3
## 2096                                 Always                    3
## 2097                                 Always                    3
## 2098                                 Always                    3
## 2099                                 Always                    3
## 2100                                 Always                    3
## 2101                                 Always                    3
## 2102                                 Always                    3
## 2103                                 Always                    3
## 2104                                 Always                    3
## 2105                                 Always                    3
## 2106                                 Always                    3
## 2107                                 Always                    3
## 2108                                 Always                    3
## 2109                                 Always                    3
## 2110                                 Always                    3
## 2111                                 Always                    3
##      Consumption_of_food_between_meals Smoke Consumption_of_water_daily
## 1                            Sometimes    no          Between 1 and 2 L
## 2                            Sometimes   yes              More than 2 L
## 3                            Sometimes    no          Between 1 and 2 L
## 4                            Sometimes    no          Between 1 and 2 L
## 5                            Sometimes    no          Between 1 and 2 L
## 6                            Sometimes    no          Between 1 and 2 L
## 7                            Sometimes    no          Between 1 and 2 L
## 8                            Sometimes    no          Between 1 and 2 L
## 9                            Sometimes    no          Between 1 and 2 L
## 10                           Sometimes    no          Between 1 and 2 L
## 11                          Frequently    no              More than 2 L
## 12                          Frequently    no          Between 1 and 2 L
## 13                           Sometimes    no              More than 2 L
## 14                           Sometimes    no          Between 1 and 2 L
## 15                           Sometimes    no          Less than a liter
## 16                              Always    no          Between 1 and 2 L
## 17                           Sometimes    no          Less than a liter
## 18                           Sometimes    no          Between 1 and 2 L
## 19                          Frequently   yes          Less than a liter
## 20                           Sometimes    no          Between 1 and 2 L
## 21                           Sometimes    no          Between 1 and 2 L
## 22                           Sometimes   yes          Between 1 and 2 L
## 23                           Sometimes    no          Between 1 and 2 L
## 24                           Sometimes    no          Between 1 and 2 L
## 25                           Sometimes    no          Between 1 and 2 L
## 26                          Frequently   yes          Between 1 and 2 L
## 27                          Frequently    no          Between 1 and 2 L
## 28                          Frequently    no          Between 1 and 2 L
## 29                           Sometimes    no          Between 1 and 2 L
## 30                           Sometimes    no          Between 1 and 2 L
## 31                          Frequently    no              More than 2 L
## 32                           Sometimes    no          Less than a liter
## 33                           Sometimes    no              More than 2 L
## 34                           Sometimes    no          Between 1 and 2 L
## 35                          Frequently    no          Between 1 and 2 L
## 36                           Sometimes    no          Between 1 and 2 L
## 37                           Sometimes    no          Less than a liter
## 38                           Sometimes    no          Less than a liter
## 39                           Sometimes    no          Between 1 and 2 L
## 40                           Sometimes    no              More than 2 L
## 41                           Sometimes    no          Between 1 and 2 L
## 42                          Frequently    no          Between 1 and 2 L
## 43                           Sometimes    no          Less than a liter
## 44                           Sometimes   yes          Between 1 and 2 L
## 45                                  no    no          Between 1 and 2 L
## 46                           Sometimes    no          Less than a liter
## 47                          Frequently    no              More than 2 L
## 48                          Frequently    no              More than 2 L
## 49                           Sometimes    no          Between 1 and 2 L
## 50                           Sometimes    no          Between 1 and 2 L
## 51                           Sometimes    no              More than 2 L
## 52                           Sometimes    no          Less than a liter
## 53                           Sometimes    no          Between 1 and 2 L
## 54                                  no    no          Between 1 and 2 L
## 55                              Always    no              More than 2 L
## 56                          Frequently    no          Between 1 and 2 L
## 57                           Sometimes    no          Less than a liter
## 58                           Sometimes    no          Less than a liter
## 59                           Sometimes    no          Between 1 and 2 L
## 60                           Sometimes    no              More than 2 L
## 61                           Sometimes    no              More than 2 L
## 62                           Sometimes    no          Between 1 and 2 L
## 63                                  no    no          Between 1 and 2 L
## 64                           Sometimes    no          Between 1 and 2 L
## 65                          Frequently    no          Less than a liter
## 66                          Frequently    no          Between 1 and 2 L
## 67                              Always    no          Between 1 and 2 L
## 68                              Always    no          Between 1 and 2 L
## 69                                  no   yes          Between 1 and 2 L
## 70                                  no    no              More than 2 L
## 71                              Always    no          Between 1 and 2 L
## 72                                  no    no              More than 2 L
## 73                           Sometimes    no              More than 2 L
## 74                           Sometimes    no              More than 2 L
## 75                          Frequently    no              More than 2 L
## 76                           Sometimes    no              More than 2 L
## 77                                  no    no          Between 1 and 2 L
## 78                           Sometimes    no              More than 2 L
## 79                           Sometimes    no              More than 2 L
## 80                           Sometimes    no          Between 1 and 2 L
## 81                           Sometimes    no          Between 1 and 2 L
## 82                          Frequently    no          Between 1 and 2 L
## 83                              Always    no          Between 1 and 2 L
## 84                                  no    no              More than 2 L
## 85                          Frequently    no          Between 1 and 2 L
## 86                           Sometimes    no          Between 1 and 2 L
## 87                          Frequently    no              More than 2 L
## 88                           Sometimes    no          Between 1 and 2 L
## 89                          Frequently    no          Between 1 and 2 L
## 90                           Sometimes    no          Less than a liter
## 91                              Always    no          Less than a liter
## 92                              Always    no          Between 1 and 2 L
## 93                          Frequently    no              More than 2 L
## 94                              Always    no          Between 1 and 2 L
## 95                           Sometimes    no          Between 1 and 2 L
## 96                          Frequently    no          Between 1 and 2 L
## 97                           Sometimes    no          Between 1 and 2 L
## 98                          Frequently    no          Less than a liter
## 99                          Frequently    no          Less than a liter
## 100                          Sometimes    no          Between 1 and 2 L
## 101                          Sometimes    no          Less than a liter
## 102                         Frequently    no          Between 1 and 2 L
## 103                         Frequently    no          Between 1 and 2 L
## 104                         Frequently    no          Between 1 and 2 L
## 105                          Sometimes    no          Between 1 and 2 L
## 106                          Sometimes    no          Between 1 and 2 L
## 107                          Sometimes    no          Between 1 and 2 L
## 108                             Always    no          Less than a liter
## 109                          Sometimes    no              More than 2 L
## 110                          Sometimes    no              More than 2 L
## 111                          Sometimes    no          Between 1 and 2 L
## 112                          Sometimes    no          Less than a liter
## 113                         Frequently    no          Between 1 and 2 L
## 114                          Sometimes    no          Between 1 and 2 L
## 115                         Frequently    no          Between 1 and 2 L
## 116                         Frequently    no          Between 1 and 2 L
## 117                          Sometimes    no          Less than a liter
## 118                         Frequently    no          Between 1 and 2 L
## 119                          Sometimes    no          Between 1 and 2 L
## 120                         Frequently   yes              More than 2 L
## 121                         Frequently   yes          Between 1 and 2 L
## 122                         Frequently    no          Between 1 and 2 L
## 123                         Frequently    no          Less than a liter
## 124                          Sometimes    no          Between 1 and 2 L
## 125                          Sometimes    no          Less than a liter
## 126                             Always    no          Between 1 and 2 L
## 127                          Sometimes    no          Between 1 and 2 L
## 128                          Sometimes    no              More than 2 L
## 129                         Frequently    no          Less than a liter
## 130                          Sometimes    no              More than 2 L
## 131                         Frequently    no          Between 1 and 2 L
## 132                          Sometimes    no          Less than a liter
## 133                         Frequently   yes              More than 2 L
## 134                             Always    no          Between 1 and 2 L
## 135                          Sometimes    no          Less than a liter
## 136                          Sometimes    no          Between 1 and 2 L
## 137                          Sometimes    no          Between 1 and 2 L
## 138                          Sometimes   yes              More than 2 L
## 139                             Always    no              More than 2 L
## 140                         Frequently    no          Between 1 and 2 L
## 141                         Frequently    no              More than 2 L
## 142                             Always    no          Between 1 and 2 L
## 143                         Frequently   yes          Less than a liter
## 144                          Sometimes    no          Less than a liter
## 145                          Sometimes    no              More than 2 L
## 146                                 no    no              More than 2 L
## 147                         Frequently    no          Between 1 and 2 L
## 148                          Sometimes    no          Less than a liter
## 149                             Always    no          Between 1 and 2 L
## 150                          Sometimes    no          Between 1 and 2 L
## 151                          Sometimes    no          Between 1 and 2 L
## 152                          Sometimes    no          Between 1 and 2 L
## 153                             Always   yes          Between 1 and 2 L
## 154                          Sometimes    no              More than 2 L
## 155                          Sometimes    no          Between 1 and 2 L
## 156                         Frequently    no          Between 1 and 2 L
## 157                         Frequently    no          Less than a liter
## 158                         Frequently    no          Between 1 and 2 L
## 159                          Sometimes    no              More than 2 L
## 160                          Sometimes    no          Between 1 and 2 L
## 161                          Sometimes   yes          Less than a liter
## 162                          Sometimes    no          Between 1 and 2 L
## 163                             Always   yes          Between 1 and 2 L
## 164                         Frequently    no          Between 1 and 2 L
## 165                         Frequently    no              More than 2 L
## 166                          Sometimes   yes          Less than a liter
## 167                             Always    no          Between 1 and 2 L
## 168                          Sometimes    no          Between 1 and 2 L
## 169                          Sometimes    no          Between 1 and 2 L
## 170                         Frequently    no          Less than a liter
## 171                          Sometimes    no          Between 1 and 2 L
## 172                         Frequently    no          Between 1 and 2 L
## 173                          Sometimes    no          Between 1 and 2 L
## 174                          Sometimes    no          Between 1 and 2 L
## 175                                 no    no              More than 2 L
## 176                          Sometimes    no          Between 1 and 2 L
## 177                             Always    no          Less than a liter
## 178                         Frequently    no          Between 1 and 2 L
## 179                         Frequently   yes          Between 1 and 2 L
## 180                                 no    no              More than 2 L
## 181                          Sometimes    no          Between 1 and 2 L
## 182                         Frequently    no          Less than a liter
## 183                         Frequently    no          Between 1 and 2 L
## 184                          Sometimes   yes          Less than a liter
## 185                                 no    no              More than 2 L
## 186                          Sometimes    no          Between 1 and 2 L
## 187                          Sometimes    no              More than 2 L
## 188                          Sometimes    no              More than 2 L
## 189                                 no    no              More than 2 L
## 190                          Sometimes    no          Between 1 and 2 L
## 191                          Sometimes    no          Between 1 and 2 L
## 192                         Frequently   yes          Between 1 and 2 L
## 193                          Sometimes    no              More than 2 L
## 194                         Frequently    no              More than 2 L
## 195                         Frequently    no              More than 2 L
## 196                          Sometimes    no          Between 1 and 2 L
## 197                          Sometimes    no          Between 1 and 2 L
## 198                          Sometimes    no          Between 1 and 2 L
## 199                         Frequently    no          Less than a liter
## 200                          Sometimes    no          Less than a liter
## 201                          Sometimes   yes              More than 2 L
## 202                             Always    no          Less than a liter
## 203                          Sometimes   yes          Less than a liter
## 204                          Sometimes    no              More than 2 L
## 205                          Sometimes    no          Between 1 and 2 L
## 206                          Sometimes   yes          Between 1 and 2 L
## 207                         Frequently    no          Between 1 and 2 L
## 208                                 no    no          Between 1 and 2 L
## 209                          Sometimes    no          Between 1 and 2 L
## 210                          Sometimes    no          Between 1 and 2 L
## 211                         Frequently    no          Between 1 and 2 L
## 212                          Sometimes    no          Less than a liter
## 213                          Sometimes    no          Between 1 and 2 L
## 214                          Sometimes    no          Between 1 and 2 L
## 215                          Sometimes    no          Between 1 and 2 L
## 216                          Sometimes    no              More than 2 L
## 217                         Frequently    no          Between 1 and 2 L
## 218                         Frequently    no              More than 2 L
## 219                          Sometimes    no          Between 1 and 2 L
## 220                          Sometimes    no              More than 2 L
## 221                         Frequently    no          Between 1 and 2 L
## 222                          Sometimes    no          Less than a liter
## 223                             Always    no              More than 2 L
## 224                         Frequently    no              More than 2 L
## 225                          Sometimes    no          Between 1 and 2 L
## 226                          Sometimes    no              More than 2 L
## 227                          Sometimes    no          Less than a liter
## 228                          Sometimes    no          Between 1 and 2 L
## 229                          Sometimes    no              More than 2 L
## 230                          Sometimes    no              More than 2 L
## 231                          Sometimes    no              More than 2 L
## 232                          Sometimes   yes              More than 2 L
## 233                          Sometimes   yes              More than 2 L
## 234                          Sometimes    no          Between 1 and 2 L
## 235                                 no    no          Between 1 and 2 L
## 236                                 no    no          Between 1 and 2 L
## 237                             Always    no          Between 1 and 2 L
## 238                          Sometimes    no          Less than a liter
## 239                          Sometimes    no              More than 2 L
## 240                                 no    no              More than 2 L
## 241                          Sometimes    no              More than 2 L
## 242                          Sometimes    no          Between 1 and 2 L
## 243                             Always    no          Between 1 and 2 L
## 244                          Sometimes   yes              More than 2 L
## 245                          Sometimes    no          Between 1 and 2 L
## 246                          Sometimes   yes          Between 1 and 2 L
## 247                          Sometimes    no              More than 2 L
## 248                         Frequently    no          Less than a liter
## 249                             Always    no              More than 2 L
## 250                          Sometimes    no          Between 1 and 2 L
## 251                          Sometimes    no          Between 1 and 2 L
## 252                          Sometimes    no              More than 2 L
## 253                          Sometimes   yes          Between 1 and 2 L
## 254                          Sometimes    no          Between 1 and 2 L
## 255                          Sometimes    no          Between 1 and 2 L
## 256                          Sometimes    no          Between 1 and 2 L
## 257                          Sometimes    no              More than 2 L
## 258                          Sometimes    no              More than 2 L
## 259                          Sometimes    no          Less than a liter
## 260                         Frequently    no          Less than a liter
## 261                          Sometimes    no          Less than a liter
## 262                         Frequently    no          Between 1 and 2 L
## 263                          Sometimes    no          Between 1 and 2 L
## 264                         Frequently    no          Less than a liter
## 265                         Frequently    no              More than 2 L
## 266                         Frequently    no          Less than a liter
## 267                         Frequently    no          Between 1 and 2 L
## 268                         Frequently    no          Between 1 and 2 L
## 269                             Always    no          Between 1 and 2 L
## 270                          Sometimes    no          Between 1 and 2 L
## 271                          Sometimes    no              More than 2 L
## 272                         Frequently    no          Less than a liter
## 273                          Sometimes    no          Between 1 and 2 L
## 274                         Frequently    no          Between 1 and 2 L
## 275                          Sometimes    no          Less than a liter
## 276                         Frequently    no          Between 1 and 2 L
## 277                         Frequently    no              More than 2 L
## 278                             Always   yes              More than 2 L
## 279                          Sometimes    no          Between 1 and 2 L
## 280                          Sometimes    no          Between 1 and 2 L
## 281                         Frequently   yes          Between 1 and 2 L
## 282                         Frequently    no          Between 1 and 2 L
## 283                         Frequently    no          Less than a liter
## 284                          Sometimes    no              More than 2 L
## 285                          Sometimes    no          Between 1 and 2 L
## 286                             Always    no          Less than a liter
## 287                          Sometimes    no          Less than a liter
## 288                          Sometimes    no              More than 2 L
## 289                          Sometimes    no          Less than a liter
## 290                          Sometimes    no              More than 2 L
## 291                         Frequently    no          Between 1 and 2 L
## 292                         Frequently    no          Between 1 and 2 L
## 293                         Frequently    no          Less than a liter
## 294                         Frequently    no          Between 1 and 2 L
## 295                          Sometimes   yes          Between 1 and 2 L
## 296                          Sometimes    no          Less than a liter
## 297                          Sometimes    no          Between 1 and 2 L
## 298                          Sometimes    no          Between 1 and 2 L
## 299                         Frequently    no          Less than a liter
## 300                          Sometimes    no              More than 2 L
## 301                          Sometimes   yes          Less than a liter
## 302                          Sometimes    no          Between 1 and 2 L
## 303                             Always    no              More than 2 L
## 304                             Always    no          Between 1 and 2 L
## 305                          Sometimes    no              More than 2 L
## 306                          Sometimes   yes          Between 1 and 2 L
## 307                             Always    no          Between 1 and 2 L
## 308                         Frequently    no          Less than a liter
## 309                             Always    no              More than 2 L
## 310                          Sometimes    no          Less than a liter
## 311                         Frequently    no          Between 1 and 2 L
## 312                             Always    no          Between 1 and 2 L
## 313                          Sometimes    no          Less than a liter
## 314                             Always    no          Between 1 and 2 L
## 315                          Sometimes    no          Less than a liter
## 316                             Always    no          Between 1 and 2 L
## 317                         Frequently    no          Less than a liter
## 318                          Sometimes    no          Between 1 and 2 L
## 319                          Sometimes    no          Less than a liter
## 320                          Sometimes    no          Less than a liter
## 321                             Always    no          Between 1 and 2 L
## 322                         Frequently    no          Less than a liter
## 323                         Frequently    no          Between 1 and 2 L
## 324                          Sometimes    no          Between 1 and 2 L
## 325                          Sometimes    no          Less than a liter
## 326                          Sometimes    no          Less than a liter
## 327                          Sometimes    no          Between 1 and 2 L
## 328                         Frequently    no          Less than a liter
## 329                          Sometimes    no              More than 2 L
## 330                          Sometimes    no          Less than a liter
## 331                         Frequently    no          Less than a liter
## 332                          Sometimes    no          Between 1 and 2 L
## 333                          Sometimes    no          Between 1 and 2 L
## 334                             Always    no              More than 2 L
## 335                         Frequently    no          Between 1 and 2 L
## 336                         Frequently    no          Less than a liter
## 337                          Sometimes    no          Between 1 and 2 L
## 338                         Frequently    no          Between 1 and 2 L
## 339                          Sometimes    no          Between 1 and 2 L
## 340                          Sometimes    no          Less than a liter
## 341                          Sometimes    no          Between 1 and 2 L
## 342                          Sometimes    no          Less than a liter
## 343                          Sometimes    no          Between 1 and 2 L
## 344                          Sometimes    no          Between 1 and 2 L
## 345                         Frequently    no          Between 1 and 2 L
## 346                             Always    no          Between 1 and 2 L
## 347                             Always    no          Less than a liter
## 348                          Sometimes    no              More than 2 L
## 349                          Sometimes    no          Between 1 and 2 L
## 350                             Always    no              More than 2 L
## 351                          Sometimes    no          Less than a liter
## 352                             Always    no          Between 1 and 2 L
## 353                          Sometimes    no          Less than a liter
## 354                          Sometimes    no          Between 1 and 2 L
## 355                          Sometimes    no          Between 1 and 2 L
## 356                          Sometimes    no          Less than a liter
## 357                          Sometimes    no          Between 1 and 2 L
## 358                          Sometimes    no          Less than a liter
## 359                          Sometimes    no          Less than a liter
## 360                          Sometimes    no          Between 1 and 2 L
## 361                         Frequently    no          Less than a liter
## 362                          Sometimes    no          Between 1 and 2 L
## 363                          Sometimes    no          Between 1 and 2 L
## 364                          Sometimes    no          Between 1 and 2 L
## 365                             Always    no          Between 1 and 2 L
## 366                          Sometimes    no          Between 1 and 2 L
## 367                          Sometimes    no          Between 1 and 2 L
## 368                         Frequently    no          Between 1 and 2 L
## 369                          Sometimes    no          Between 1 and 2 L
## 370                         Frequently    no          Between 1 and 2 L
## 371                          Sometimes    no          Less than a liter
## 372                             Always    no          Between 1 and 2 L
## 373                          Sometimes    no          Less than a liter
## 374                          Sometimes    no          Between 1 and 2 L
## 375                         Frequently    no          Between 1 and 2 L
## 376                         Frequently    no              More than 2 L
## 377                          Sometimes    no          Less than a liter
## 378                         Frequently    no          Between 1 and 2 L
## 379                         Frequently    no          Less than a liter
## 380                          Sometimes    no          Between 1 and 2 L
## 381                          Sometimes    no              More than 2 L
## 382                         Frequently    no          Less than a liter
## 383                         Frequently    no          Less than a liter
## 384                          Sometimes    no          Between 1 and 2 L
## 385                          Sometimes    no          Less than a liter
## 386                         Frequently    no          Between 1 and 2 L
## 387                          Sometimes    no          Less than a liter
## 388                         Frequently    no          Less than a liter
## 389                          Sometimes    no              More than 2 L
## 390                          Sometimes    no          Between 1 and 2 L
## 391                             Always    no              More than 2 L
## 392                          Sometimes    no          Between 1 and 2 L
## 393                         Frequently    no              More than 2 L
## 394                          Sometimes    no          Between 1 and 2 L
## 395                          Sometimes    no          Less than a liter
## 396                          Sometimes    no          Between 1 and 2 L
## 397                          Sometimes    no          Less than a liter
## 398                         Frequently    no              More than 2 L
## 399                             Always    no          Less than a liter
## 400                         Frequently    no          Less than a liter
## 401                          Sometimes    no          Between 1 and 2 L
## 402                             Always    no          Between 1 and 2 L
## 403                         Frequently    no          Between 1 and 2 L
## 404                          Sometimes    no              More than 2 L
## 405                          Sometimes    no          Between 1 and 2 L
## 406                          Sometimes    no          Between 1 and 2 L
## 407                          Sometimes    no          Between 1 and 2 L
## 408                         Frequently    no          Less than a liter
## 409                          Sometimes    no          Between 1 and 2 L
## 410                          Sometimes    no              More than 2 L
## 411                          Sometimes    no          Between 1 and 2 L
## 412                          Sometimes    no          Between 1 and 2 L
## 413                         Frequently    no          Between 1 and 2 L
## 414                          Sometimes    no          Between 1 and 2 L
## 415                             Always    no          Between 1 and 2 L
## 416                          Sometimes    no              More than 2 L
## 417                          Sometimes    no          Less than a liter
## 418                          Sometimes    no          Between 1 and 2 L
## 419                          Sometimes    no          Between 1 and 2 L
## 420                          Sometimes    no          Less than a liter
## 421                          Sometimes    no          Between 1 and 2 L
## 422                          Sometimes    no          Between 1 and 2 L
## 423                          Sometimes    no          Between 1 and 2 L
## 424                          Sometimes    no          Less than a liter
## 425                          Sometimes    no          Less than a liter
## 426                             Always    no          Between 1 and 2 L
## 427                          Sometimes    no              More than 2 L
## 428                                 no    no          Between 1 and 2 L
## 429                         Frequently    no          Less than a liter
## 430                         Frequently    no          Less than a liter
## 431                          Sometimes    no          Less than a liter
## 432                         Frequently    no          Between 1 and 2 L
## 433                         Frequently    no          Less than a liter
## 434                          Sometimes    no          Less than a liter
## 435                         Frequently    no          Between 1 and 2 L
## 436                          Sometimes    no              More than 2 L
## 437                          Sometimes    no          Less than a liter
## 438                             Always    no          Between 1 and 2 L
## 439                          Sometimes    no          Between 1 and 2 L
## 440                         Frequently    no          Between 1 and 2 L
## 441                          Sometimes    no          Less than a liter
## 442                         Frequently    no          Less than a liter
## 443                          Sometimes    no          Between 1 and 2 L
## 444                          Sometimes    no          Between 1 and 2 L
## 445                          Sometimes    no          Between 1 and 2 L
## 446                          Sometimes    no          Less than a liter
## 447                         Frequently    no          Between 1 and 2 L
## 448                          Sometimes    no          Between 1 and 2 L
## 449                          Sometimes    no          Less than a liter
## 450                          Sometimes    no          Between 1 and 2 L
## 451                          Sometimes    no          Between 1 and 2 L
## 452                         Frequently    no          Between 1 and 2 L
## 453                                 no    no          Between 1 and 2 L
## 454                          Sometimes    no          Less than a liter
## 455                          Sometimes    no          Less than a liter
## 456                         Frequently    no          Less than a liter
## 457                         Frequently    no          Between 1 and 2 L
## 458                          Sometimes    no          Less than a liter
## 459                             Always    no          Less than a liter
## 460                         Frequently    no              More than 2 L
## 461                         Frequently    no          Less than a liter
## 462                          Sometimes    no          Between 1 and 2 L
## 463                             Always    no          Between 1 and 2 L
## 464                          Sometimes    no          Less than a liter
## 465                             Always    no          Between 1 and 2 L
## 466                         Frequently    no          Less than a liter
## 467                         Frequently    no          Less than a liter
## 468                         Frequently    no          Less than a liter
## 469                         Frequently    no          Less than a liter
## 470                          Sometimes    no          Between 1 and 2 L
## 471                         Frequently    no          Between 1 and 2 L
## 472                          Sometimes    no          Between 1 and 2 L
## 473                         Frequently    no          Between 1 and 2 L
## 474                         Frequently    no          Less than a liter
## 475                          Sometimes    no          Less than a liter
## 476                          Sometimes    no          Less than a liter
## 477                          Sometimes    no          Between 1 and 2 L
## 478                         Frequently    no          Less than a liter
## 479                         Frequently    no          Less than a liter
## 480                         Frequently    no          Between 1 and 2 L
## 481                          Sometimes    no          Less than a liter
## 482                          Sometimes    no          Less than a liter
## 483                         Frequently    no          Between 1 and 2 L
## 484                          Sometimes    no          Less than a liter
## 485                          Sometimes    no          Less than a liter
## 486                             Always    no          Between 1 and 2 L
## 487                          Sometimes    no          Between 1 and 2 L
## 488                          Sometimes    no              More than 2 L
## 489                          Sometimes    no              More than 2 L
## 490                          Sometimes    no          Less than a liter
## 491                                 no    no          Between 1 and 2 L
## 492                          Sometimes   yes          Less than a liter
## 493                         Frequently    no          Less than a liter
## 494                         Frequently    no          Less than a liter
## 495                          Sometimes    no          Between 1 and 2 L
## 496                             Always    no          Less than a liter
## 497                          Sometimes    no          Between 1 and 2 L
## 498                          Sometimes    no          Between 1 and 2 L
## 499                          Sometimes    no          Less than a liter
## 500                          Sometimes    no          Less than a liter
## 501                          Sometimes    no              More than 2 L
## 502                          Sometimes    no          Between 1 and 2 L
## 503                          Sometimes    no          Between 1 and 2 L
## 504                          Sometimes    no              More than 2 L
## 505                          Sometimes    no          Between 1 and 2 L
## 506                          Sometimes    no              More than 2 L
## 507                          Sometimes    no              More than 2 L
## 508                          Sometimes    no              More than 2 L
## 509                          Sometimes    no              More than 2 L
## 510                          Sometimes    no          Between 1 and 2 L
## 511                         Frequently    no              More than 2 L
## 512                         Frequently    no              More than 2 L
## 513                         Frequently    no          Less than a liter
## 514                         Frequently    no          Between 1 and 2 L
## 515                         Frequently    no              More than 2 L
## 516                         Frequently    no              More than 2 L
## 517                         Frequently    no          Between 1 and 2 L
## 518                         Frequently    no          Less than a liter
## 519                         Frequently    no          Between 1 and 2 L
## 520                          Sometimes    no              More than 2 L
## 521                          Sometimes    no          Between 1 and 2 L
## 522                          Sometimes    no          Between 1 and 2 L
## 523                         Frequently    no          Less than a liter
## 524                         Frequently    no          Less than a liter
## 525                         Frequently    no          Less than a liter
## 526                         Frequently    no          Between 1 and 2 L
## 527                         Frequently    no          Less than a liter
## 528                         Frequently    no          Less than a liter
## 529                         Frequently    no          Between 1 and 2 L
## 530                         Frequently    no          Between 1 and 2 L
## 531                         Frequently    no          Less than a liter
## 532                          Sometimes    no              More than 2 L
## 533                          Sometimes    no              More than 2 L
## 534                          Sometimes    no          Between 1 and 2 L
## 535                         Frequently    no          Between 1 and 2 L
## 536                         Frequently    no          Less than a liter
## 537                         Frequently    no          Between 1 and 2 L
## 538                          Sometimes    no          Less than a liter
## 539                          Sometimes    no          Between 1 and 2 L
## 540                          Sometimes    no          Less than a liter
## 541                         Frequently    no          Between 1 and 2 L
## 542                         Frequently    no          Between 1 and 2 L
## 543                         Frequently    no          Between 1 and 2 L
## 544                         Frequently    no          Between 1 and 2 L
## 545                         Frequently    no          Between 1 and 2 L
## 546                         Frequently    no          Less than a liter
## 547                          Sometimes    no          Less than a liter
## 548                          Sometimes    no          Less than a liter
## 549                          Sometimes    no          Between 1 and 2 L
## 550                         Frequently    no          Between 1 and 2 L
## 551                         Frequently    no              More than 2 L
## 552                         Frequently    no              More than 2 L
## 553                          Sometimes    no          Between 1 and 2 L
## 554                          Sometimes    no          Between 1 and 2 L
## 555                          Sometimes    no              More than 2 L
## 556                          Sometimes    no          Between 1 and 2 L
## 557                          Sometimes    no          Between 1 and 2 L
## 558                          Sometimes    no          Between 1 and 2 L
## 559                          Sometimes    no          Between 1 and 2 L
## 560                          Sometimes    no              More than 2 L
## 561                          Sometimes    no          Between 1 and 2 L
## 562                          Sometimes    no              More than 2 L
## 563                          Sometimes    no          Between 1 and 2 L
## 564                          Sometimes    no          Between 1 and 2 L
## 565                          Sometimes    no          Between 1 and 2 L
## 566                          Sometimes    no          Between 1 and 2 L
## 567                          Sometimes    no          Between 1 and 2 L
## 568                         Frequently    no          Between 1 and 2 L
## 569                         Frequently    no              More than 2 L
## 570                         Frequently    no          Between 1 and 2 L
## 571                          Sometimes    no          Between 1 and 2 L
## 572                          Sometimes    no          Less than a liter
## 573                          Sometimes    no          Less than a liter
## 574                         Frequently    no          Less than a liter
## 575                         Frequently    no          Between 1 and 2 L
## 576                         Frequently    no          Less than a liter
## 577                         Frequently    no          Less than a liter
## 578                         Frequently    no          Less than a liter
## 579                         Frequently    no          Between 1 and 2 L
## 580                          Sometimes    no          Between 1 and 2 L
## 581                          Sometimes    no          Between 1 and 2 L
## 582                          Sometimes    no          Between 1 and 2 L
## 583                         Frequently    no          Less than a liter
## 584                         Frequently    no              More than 2 L
## 585                         Frequently    no          Less than a liter
## 586                          Sometimes    no          Less than a liter
## 587                          Sometimes    no          Between 1 and 2 L
## 588                          Sometimes    no          Less than a liter
## 589                          Sometimes    no          Less than a liter
## 590                          Sometimes    no          Between 1 and 2 L
## 591                          Sometimes    no          Less than a liter
## 592                          Sometimes    no          Between 1 and 2 L
## 593                          Sometimes    no          Between 1 and 2 L
## 594                          Sometimes    no              More than 2 L
## 595                          Sometimes    no          Between 1 and 2 L
## 596                          Sometimes    no          Between 1 and 2 L
## 597                          Sometimes    no          Between 1 and 2 L
## 598                          Sometimes    no          Between 1 and 2 L
## 599                          Sometimes    no          Between 1 and 2 L
## 600                          Sometimes    no          Less than a liter
## 601                         Frequently    no          Less than a liter
## 602                         Frequently    no          Less than a liter
## 603                         Frequently    no              More than 2 L
## 604                         Frequently    no          Less than a liter
## 605                         Frequently    no          Less than a liter
## 606                         Frequently    no          Between 1 and 2 L
## 607                          Sometimes    no          Less than a liter
## 608                          Sometimes    no          Between 1 and 2 L
## 609                          Sometimes    no          Less than a liter
## 610                          Sometimes    no              More than 2 L
## 611                         Frequently    no              More than 2 L
## 612                         Frequently    no              More than 2 L
## 613                         Frequently    no          Between 1 and 2 L
## 614                         Frequently    no              More than 2 L
## 615                         Frequently    no          Less than a liter
## 616                         Frequently    no          Less than a liter
## 617                         Frequently    no          Less than a liter
## 618                          Sometimes    no              More than 2 L
## 619                         Frequently    no          Between 1 and 2 L
## 620                          Sometimes    no          Less than a liter
## 621                          Sometimes    no          Between 1 and 2 L
## 622                         Frequently    no          Between 1 and 2 L
## 623                         Frequently    no          Less than a liter
## 624                         Frequently    no          Between 1 and 2 L
## 625                          Sometimes    no              More than 2 L
## 626                          Sometimes    no          Between 1 and 2 L
## 627                          Sometimes    no          Between 1 and 2 L
## 628                          Sometimes    no              More than 2 L
## 629                          Sometimes    no          Between 1 and 2 L
## 630                         Frequently    no          Between 1 and 2 L
## 631                          Sometimes    no          Less than a liter
## 632                         Frequently    no          Less than a liter
## 633                         Frequently    no          Less than a liter
## 634                          Sometimes    no          Between 1 and 2 L
## 635                         Frequently    no              More than 2 L
## 636                          Sometimes    no          Between 1 and 2 L
## 637                          Sometimes    no          Between 1 and 2 L
## 638                          Sometimes    no          Between 1 and 2 L
## 639                          Sometimes    no          Between 1 and 2 L
## 640                          Sometimes    no          Between 1 and 2 L
## 641                         Frequently    no          Less than a liter
## 642                         Frequently    no          Between 1 and 2 L
## 643                          Sometimes    no          Between 1 and 2 L
## 644                          Sometimes    no              More than 2 L
## 645                          Sometimes    no          Between 1 and 2 L
## 646                         Frequently    no          Between 1 and 2 L
## 647                         Frequently    no          Between 1 and 2 L
## 648                         Frequently    no          Between 1 and 2 L
## 649                         Frequently    no          Less than a liter
## 650                         Frequently    no              More than 2 L
## 651                         Frequently    no          Between 1 and 2 L
## 652                         Frequently    no              More than 2 L
## 653                         Frequently    no          Less than a liter
## 654                         Frequently    no          Between 1 and 2 L
## 655                         Frequently    no          Between 1 and 2 L
## 656                          Sometimes    no              More than 2 L
## 657                          Sometimes    no          Between 1 and 2 L
## 658                          Sometimes    no          Between 1 and 2 L
## 659                         Frequently    no          Less than a liter
## 660                         Frequently    no          Less than a liter
## 661                         Frequently    no          Less than a liter
## 662                         Frequently    no          Less than a liter
## 663                         Frequently    no          Less than a liter
## 664                         Frequently    no          Less than a liter
## 665                         Frequently    no          Between 1 and 2 L
## 666                         Frequently    no          Less than a liter
## 667                          Sometimes    no          Less than a liter
## 668                          Sometimes    no          Between 1 and 2 L
## 669                          Sometimes    no              More than 2 L
## 670                          Sometimes    no          Between 1 and 2 L
## 671                          Sometimes    no          Between 1 and 2 L
## 672                         Frequently    no          Less than a liter
## 673                          Sometimes    no          Between 1 and 2 L
## 674                          Sometimes    no          Less than a liter
## 675                          Sometimes    no          Between 1 and 2 L
## 676                          Sometimes    no          Less than a liter
## 677                          Sometimes    no          Between 1 and 2 L
## 678                          Sometimes    no          Between 1 and 2 L
## 679                          Sometimes    no          Between 1 and 2 L
## 680                         Frequently    no          Between 1 and 2 L
## 681                          Sometimes    no              More than 2 L
## 682                         Frequently    no          Between 1 and 2 L
## 683                          Sometimes    no          Less than a liter
## 684                          Sometimes    no          Less than a liter
## 685                          Sometimes    no          Between 1 and 2 L
## 686                         Frequently    no          Between 1 and 2 L
## 687                         Frequently    no          Between 1 and 2 L
## 688                         Frequently    no          Between 1 and 2 L
## 689                          Sometimes    no          Between 1 and 2 L
## 690                          Sometimes    no          Less than a liter
## 691                          Sometimes    no          Between 1 and 2 L
## 692                          Sometimes    no          Between 1 and 2 L
## 693                          Sometimes    no          Between 1 and 2 L
## 694                          Sometimes    no          Between 1 and 2 L
## 695                          Sometimes    no          Between 1 and 2 L
## 696                          Sometimes    no          Between 1 and 2 L
## 697                          Sometimes    no              More than 2 L
## 698                          Sometimes    no              More than 2 L
## 699                          Sometimes    no          Between 1 and 2 L
## 700                          Sometimes    no          Between 1 and 2 L
## 701                          Sometimes    no          Between 1 and 2 L
## 702                          Sometimes    no          Between 1 and 2 L
## 703                          Sometimes    no              More than 2 L
## 704                         Frequently    no          Between 1 and 2 L
## 705                          Sometimes    no              More than 2 L
## 706                         Frequently    no          Between 1 and 2 L
## 707                          Sometimes    no          Between 1 and 2 L
## 708                          Sometimes    no          Less than a liter
## 709                          Sometimes    no          Less than a liter
## 710                          Sometimes    no          Less than a liter
## 711                          Sometimes    no          Less than a liter
## 712                         Frequently    no          Less than a liter
## 713                         Frequently    no          Less than a liter
## 714                         Frequently    no          Less than a liter
## 715                         Frequently    no          Between 1 and 2 L
## 716                          Sometimes    no          Between 1 and 2 L
## 717                          Sometimes    no          Between 1 and 2 L
## 718                          Sometimes    no          Between 1 and 2 L
## 719                         Frequently    no          Less than a liter
## 720                         Frequently    no              More than 2 L
## 721                         Frequently    no          Less than a liter
## 722                          Sometimes    no          Less than a liter
## 723                          Sometimes    no          Between 1 and 2 L
## 724                          Sometimes    no          Between 1 and 2 L
## 725                          Sometimes    no          Between 1 and 2 L
## 726                          Sometimes    no          Between 1 and 2 L
## 727                         Frequently    no          Less than a liter
## 728                          Sometimes    no              More than 2 L
## 729                          Sometimes    no          Between 1 and 2 L
## 730                          Sometimes    no          Between 1 and 2 L
## 731                          Sometimes    no          Between 1 and 2 L
## 732                          Sometimes    no          Between 1 and 2 L
## 733                          Sometimes    no          Between 1 and 2 L
## 734                          Sometimes    no          Between 1 and 2 L
## 735                          Sometimes    no          Between 1 and 2 L
## 736                          Sometimes    no          Between 1 and 2 L
## 737                         Frequently    no          Less than a liter
## 738                         Frequently    no          Less than a liter
## 739                         Frequently    no          Between 1 and 2 L
## 740                         Frequently    no          Less than a liter
## 741                         Frequently    no          Less than a liter
## 742                         Frequently    no          Between 1 and 2 L
## 743                          Sometimes    no          Between 1 and 2 L
## 744                          Sometimes    no          Between 1 and 2 L
## 745                          Sometimes    no          Less than a liter
## 746                          Sometimes    no          Between 1 and 2 L
## 747                                 no    no          Between 1 and 2 L
## 748                          Sometimes    no          Between 1 and 2 L
## 749                          Sometimes    no          Between 1 and 2 L
## 750                                 no    no          Between 1 and 2 L
## 751                          Sometimes    no          Less than a liter
## 752                          Sometimes    no              More than 2 L
## 753                          Sometimes    no          Less than a liter
## 754                          Sometimes    no          Between 1 and 2 L
## 755                          Sometimes    no          Between 1 and 2 L
## 756                          Sometimes    no          Between 1 and 2 L
## 757                          Sometimes    no          Less than a liter
## 758                          Sometimes    no          Between 1 and 2 L
## 759                                 no    no              More than 2 L
## 760                          Sometimes    no          Less than a liter
## 761                          Sometimes    no              More than 2 L
## 762                          Sometimes    no          Between 1 and 2 L
## 763                                 no    no              More than 2 L
## 764                                 no    no              More than 2 L
## 765                                 no    no              More than 2 L
## 766                          Sometimes    no          Between 1 and 2 L
## 767                          Sometimes    no          Between 1 and 2 L
## 768                          Sometimes    no          Between 1 and 2 L
## 769                          Sometimes    no          Between 1 and 2 L
## 770                          Sometimes    no              More than 2 L
## 771                                 no    no              More than 2 L
## 772                         Frequently    no          Between 1 and 2 L
## 773                          Sometimes    no              More than 2 L
## 774                          Sometimes    no              More than 2 L
## 775                          Sometimes    no          Between 1 and 2 L
## 776                          Sometimes    no          Between 1 and 2 L
## 777                          Sometimes    no          Between 1 and 2 L
## 778                          Sometimes    no          Between 1 and 2 L
## 779                          Sometimes    no          Between 1 and 2 L
## 780                          Sometimes    no              More than 2 L
## 781                          Sometimes    no          Between 1 and 2 L
## 782                          Sometimes    no          Between 1 and 2 L
## 783                          Sometimes    no          Less than a liter
## 784                          Sometimes    no          Less than a liter
## 785                          Sometimes    no          Between 1 and 2 L
## 786                          Sometimes    no          Between 1 and 2 L
## 787                          Sometimes    no          Between 1 and 2 L
## 788                          Sometimes    no          Between 1 and 2 L
## 789                          Sometimes    no          Less than a liter
## 790                          Sometimes    no          Between 1 and 2 L
## 791                          Sometimes    no              More than 2 L
## 792                          Sometimes    no          Between 1 and 2 L
## 793                          Sometimes    no          Between 1 and 2 L
## 794                          Sometimes    no          Less than a liter
## 795                          Sometimes    no          Between 1 and 2 L
## 796                          Sometimes    no          Less than a liter
## 797                          Sometimes    no          Less than a liter
## 798                          Sometimes    no          Between 1 and 2 L
## 799                          Sometimes    no          Between 1 and 2 L
## 800                          Sometimes    no              More than 2 L
## 801                          Sometimes    no          Less than a liter
## 802                          Sometimes    no          Between 1 and 2 L
## 803                          Sometimes    no          Between 1 and 2 L
## 804                          Sometimes    no          Less than a liter
## 805                          Sometimes    no          Between 1 and 2 L
## 806                                 no    no          Between 1 and 2 L
## 807                                 no    no          Between 1 and 2 L
## 808                          Sometimes    no          Between 1 and 2 L
## 809                          Sometimes    no          Between 1 and 2 L
## 810                                 no    no          Between 1 and 2 L
## 811                                 no    no          Between 1 and 2 L
## 812                          Sometimes    no          Between 1 and 2 L
## 813                          Sometimes    no          Between 1 and 2 L
## 814                          Sometimes    no          Between 1 and 2 L
## 815                          Sometimes    no          Less than a liter
## 816                          Sometimes    no          Less than a liter
## 817                          Sometimes    no          Between 1 and 2 L
## 818                          Sometimes    no          Between 1 and 2 L
## 819                          Sometimes    no          Between 1 and 2 L
## 820                          Sometimes    no          Less than a liter
## 821                          Sometimes    no          Less than a liter
## 822                          Sometimes    no          Less than a liter
## 823                          Sometimes    no              More than 2 L
## 824                          Sometimes    no              More than 2 L
## 825                                 no    no              More than 2 L
## 826                          Sometimes    no          Between 1 and 2 L
## 827                          Sometimes    no          Between 1 and 2 L
## 828                          Sometimes    no              More than 2 L
## 829                          Sometimes    no          Between 1 and 2 L
## 830                          Sometimes    no          Between 1 and 2 L
## 831                                 no    no              More than 2 L
## 832                                 no    no              More than 2 L
## 833                                 no    no              More than 2 L
## 834                                 no    no              More than 2 L
## 835                                 no    no              More than 2 L
## 836                          Sometimes    no          Between 1 and 2 L
## 837                          Sometimes    no          Between 1 and 2 L
## 838                          Sometimes    no          Between 1 and 2 L
## 839                          Sometimes    no          Between 1 and 2 L
## 840                          Sometimes    no              More than 2 L
## 841                          Sometimes    no              More than 2 L
## 842                          Sometimes    no              More than 2 L
## 843                          Sometimes    no          Between 1 and 2 L
## 844                          Sometimes    no          Between 1 and 2 L
## 845                                 no    no              More than 2 L
## 846                                 no    no          Between 1 and 2 L
## 847                          Sometimes    no          Between 1 and 2 L
## 848                          Sometimes    no          Between 1 and 2 L
## 849                          Sometimes    no          Between 1 and 2 L
## 850                          Sometimes    no              More than 2 L
## 851                          Sometimes    no          Between 1 and 2 L
## 852                          Sometimes    no          Between 1 and 2 L
## 853                          Sometimes    no          Between 1 and 2 L
## 854                          Sometimes    no              More than 2 L
## 855                          Sometimes    no          Less than a liter
## 856                          Sometimes    no          Less than a liter
## 857                          Sometimes    no          Between 1 and 2 L
## 858                          Sometimes    no          Between 1 and 2 L
## 859                          Sometimes    no          Between 1 and 2 L
## 860                          Sometimes    no              More than 2 L
## 861                          Sometimes    no              More than 2 L
## 862                          Sometimes    no          Less than a liter
## 863                          Sometimes    no          Less than a liter
## 864                          Sometimes    no          Less than a liter
## 865                          Sometimes    no          Less than a liter
## 866                          Sometimes    no          Less than a liter
## 867                          Sometimes    no          Less than a liter
## 868                          Sometimes    no          Between 1 and 2 L
## 869                          Sometimes    no          Between 1 and 2 L
## 870                          Sometimes    no          Less than a liter
## 871                          Sometimes    no          Between 1 and 2 L
## 872                          Sometimes    no          Between 1 and 2 L
## 873                          Sometimes    no          Less than a liter
## 874                          Sometimes    no              More than 2 L
## 875                          Sometimes    no          Between 1 and 2 L
## 876                          Sometimes    no          Less than a liter
## 877                          Sometimes    no          Between 1 and 2 L
## 878                          Sometimes    no          Between 1 and 2 L
## 879                          Sometimes    no          Between 1 and 2 L
## 880                          Sometimes    no          Between 1 and 2 L
## 881                          Sometimes    no          Less than a liter
## 882                          Sometimes    no          Between 1 and 2 L
## 883                          Sometimes    no          Between 1 and 2 L
## 884                          Sometimes    no          Less than a liter
## 885                          Sometimes    no              More than 2 L
## 886                          Sometimes    no          Between 1 and 2 L
## 887                          Sometimes    no          Between 1 and 2 L
## 888                          Sometimes    no          Between 1 and 2 L
## 889                          Sometimes    no              More than 2 L
## 890                          Sometimes    no              More than 2 L
## 891                          Sometimes    no          Between 1 and 2 L
## 892                          Sometimes    no          Between 1 and 2 L
## 893                          Sometimes    no          Between 1 and 2 L
## 894                          Sometimes    no          Between 1 and 2 L
## 895                          Sometimes    no          Less than a liter
## 896                                 no    no              More than 2 L
## 897                                 no    no              More than 2 L
## 898                          Sometimes    no          Between 1 and 2 L
## 899                          Sometimes    no          Between 1 and 2 L
## 900                          Sometimes    no          Between 1 and 2 L
## 901                                 no    no          Between 1 and 2 L
## 902                          Sometimes    no          Between 1 and 2 L
## 903                          Sometimes    no          Less than a liter
## 904                          Sometimes    no          Less than a liter
## 905                          Sometimes    no          Between 1 and 2 L
## 906                          Sometimes    no          Between 1 and 2 L
## 907                          Sometimes    no          Less than a liter
## 908                          Sometimes    no              More than 2 L
## 909                          Sometimes    no          Between 1 and 2 L
## 910                          Sometimes    no          Between 1 and 2 L
## 911                          Sometimes    no          Less than a liter
## 912                          Sometimes    no              More than 2 L
## 913                          Sometimes    no          Between 1 and 2 L
## 914                                 no    no              More than 2 L
## 915                                 no    no              More than 2 L
## 916                          Sometimes    no              More than 2 L
## 917                          Sometimes    no              More than 2 L
## 918                          Sometimes    no              More than 2 L
## 919                          Sometimes    no          Between 1 and 2 L
## 920                          Sometimes    no          Between 1 and 2 L
## 921                                 no    no              More than 2 L
## 922                                 no    no              More than 2 L
## 923                                 no    no              More than 2 L
## 924                                 no    no              More than 2 L
## 925                          Sometimes    no          Between 1 and 2 L
## 926                          Sometimes    no          Less than a liter
## 927                          Sometimes    no              More than 2 L
## 928                          Sometimes    no              More than 2 L
## 929                          Sometimes    no          Between 1 and 2 L
## 930                          Sometimes    no              More than 2 L
## 931                                 no    no              More than 2 L
## 932                                 no    no              More than 2 L
## 933                          Sometimes    no              More than 2 L
## 934                          Sometimes    no          Between 1 and 2 L
## 935                          Sometimes    no              More than 2 L
## 936                          Sometimes    no              More than 2 L
## 937                          Sometimes    no          Between 1 and 2 L
## 938                          Sometimes    no          Between 1 and 2 L
## 939                          Sometimes    no          Between 1 and 2 L
## 940                          Sometimes    no          Between 1 and 2 L
## 941                          Sometimes    no          Less than a liter
## 942                          Sometimes    no          Between 1 and 2 L
## 943                          Sometimes    no          Less than a liter
## 944                          Sometimes    no          Between 1 and 2 L
## 945                          Sometimes    no          Between 1 and 2 L
## 946                          Sometimes    no          Between 1 and 2 L
## 947                          Sometimes    no          Between 1 and 2 L
## 948                          Sometimes    no          Between 1 and 2 L
## 949                          Sometimes    no          Less than a liter
## 950                          Sometimes    no              More than 2 L
## 951                          Sometimes    no          Less than a liter
## 952                          Sometimes    no          Between 1 and 2 L
## 953                          Sometimes    no          Less than a liter
## 954                          Sometimes    no          Less than a liter
## 955                          Sometimes    no              More than 2 L
## 956                          Sometimes    no          Between 1 and 2 L
## 957                          Sometimes    no          Less than a liter
## 958                          Sometimes    no          Between 1 and 2 L
## 959                                 no    no              More than 2 L
## 960                          Sometimes    no          Between 1 and 2 L
## 961                          Sometimes    no          Less than a liter
## 962                          Sometimes    no          Between 1 and 2 L
## 963                          Sometimes    no          Between 1 and 2 L
## 964                          Sometimes    no          Between 1 and 2 L
## 965                          Sometimes    no          Between 1 and 2 L
## 966                          Sometimes    no          Between 1 and 2 L
## 967                          Sometimes    no          Less than a liter
## 968                          Sometimes    no          Less than a liter
## 969                          Sometimes    no          Less than a liter
## 970                          Sometimes    no          Between 1 and 2 L
## 971                          Sometimes    no              More than 2 L
## 972                          Sometimes    no          Between 1 and 2 L
## 973                          Sometimes    no              More than 2 L
## 974                          Sometimes    no          Less than a liter
## 975                          Sometimes    no          Between 1 and 2 L
## 976                          Sometimes    no          Between 1 and 2 L
## 977                          Sometimes    no          Between 1 and 2 L
## 978                          Sometimes    no          Between 1 and 2 L
## 979                          Sometimes    no          Between 1 and 2 L
## 980                          Sometimes    no          Between 1 and 2 L
## 981                          Sometimes    no          Between 1 and 2 L
## 982                          Sometimes    no          Between 1 and 2 L
## 983                          Sometimes    no          Between 1 and 2 L
## 984                          Sometimes    no          Between 1 and 2 L
## 985                          Sometimes    no          Between 1 and 2 L
## 986                          Sometimes    no          Between 1 and 2 L
## 987                          Sometimes    no          Between 1 and 2 L
## 988                          Sometimes    no              More than 2 L
## 989                          Sometimes    no          Less than a liter
## 990                          Sometimes    no          Between 1 and 2 L
## 991                          Sometimes    no          Less than a liter
## 992                          Sometimes    no              More than 2 L
## 993                          Sometimes    no          Between 1 and 2 L
## 994                          Sometimes    no          Less than a liter
## 995                          Sometimes    no          Between 1 and 2 L
## 996                          Sometimes    no          Between 1 and 2 L
## 997                          Sometimes    no          Between 1 and 2 L
## 998                          Sometimes    no          Less than a liter
## 999                          Sometimes    no          Between 1 and 2 L
## 1000                         Sometimes    no          Between 1 and 2 L
## 1001                         Sometimes    no              More than 2 L
## 1002                         Sometimes    no          Less than a liter
## 1003                         Sometimes    no              More than 2 L
## 1004                         Sometimes    no          Between 1 and 2 L
## 1005                         Sometimes    no          Between 1 and 2 L
## 1006                         Sometimes    no              More than 2 L
## 1007                         Sometimes    no          Between 1 and 2 L
## 1008                         Sometimes    no          Between 1 and 2 L
## 1009                         Sometimes    no              More than 2 L
## 1010                         Sometimes    no          Less than a liter
## 1011                         Sometimes    no          Between 1 and 2 L
## 1012                         Sometimes    no          Between 1 and 2 L
## 1013                         Sometimes    no          Between 1 and 2 L
## 1014                         Sometimes    no          Between 1 and 2 L
## 1015                         Sometimes    no              More than 2 L
## 1016                         Sometimes    no          Between 1 and 2 L
## 1017                         Sometimes    no          Between 1 and 2 L
## 1018                         Sometimes    no          Less than a liter
## 1019                         Sometimes    no          Between 1 and 2 L
## 1020                         Sometimes    no          Less than a liter
## 1021                         Sometimes    no          Less than a liter
## 1022                         Sometimes    no          Between 1 and 2 L
## 1023                         Sometimes    no          Between 1 and 2 L
## 1024                         Sometimes    no          Between 1 and 2 L
## 1025                         Sometimes    no          Between 1 and 2 L
## 1026                         Sometimes    no              More than 2 L
## 1027                         Sometimes    no          Between 1 and 2 L
## 1028                         Sometimes    no          Between 1 and 2 L
## 1029                         Sometimes    no          Between 1 and 2 L
## 1030                         Sometimes    no              More than 2 L
## 1031                         Sometimes    no              More than 2 L
## 1032                         Sometimes    no          Between 1 and 2 L
## 1033                         Sometimes    no          Between 1 and 2 L
## 1034                         Sometimes    no              More than 2 L
## 1035                         Sometimes    no          Between 1 and 2 L
## 1036                         Sometimes    no              More than 2 L
## 1037                         Sometimes    no              More than 2 L
## 1038                         Sometimes    no          Between 1 and 2 L
## 1039                         Sometimes    no          Between 1 and 2 L
## 1040                         Sometimes    no              More than 2 L
## 1041                         Sometimes    no              More than 2 L
## 1042                         Sometimes    no          Between 1 and 2 L
## 1043                         Sometimes    no          Between 1 and 2 L
## 1044                         Sometimes    no          Between 1 and 2 L
## 1045                         Sometimes    no          Between 1 and 2 L
## 1046                         Sometimes    no              More than 2 L
## 1047                         Sometimes    no              More than 2 L
## 1048                         Sometimes    no          Between 1 and 2 L
## 1049                         Sometimes    no          Between 1 and 2 L
## 1050                         Sometimes    no          Between 1 and 2 L
## 1051                         Sometimes    no          Less than a liter
## 1052                         Sometimes    no          Between 1 and 2 L
## 1053                         Sometimes    no          Between 1 and 2 L
## 1054                         Sometimes    no          Between 1 and 2 L
## 1055                         Sometimes    no          Between 1 and 2 L
## 1056                         Sometimes    no          Less than a liter
## 1057                         Sometimes    no          Between 1 and 2 L
## 1058                         Sometimes    no              More than 2 L
## 1059                         Sometimes    no          Less than a liter
## 1060                         Sometimes    no              More than 2 L
## 1061                         Sometimes    no          Between 1 and 2 L
## 1062                         Sometimes    no          Between 1 and 2 L
## 1063                         Sometimes    no          Between 1 and 2 L
## 1064                         Sometimes    no          Less than a liter
## 1065                         Sometimes    no          Between 1 and 2 L
## 1066                         Sometimes    no          Between 1 and 2 L
## 1067                         Sometimes    no          Between 1 and 2 L
## 1068                         Sometimes    no          Less than a liter
## 1069                         Sometimes    no          Between 1 and 2 L
## 1070                         Sometimes    no          Between 1 and 2 L
## 1071                         Sometimes    no          Between 1 and 2 L
## 1072                         Sometimes    no          Between 1 and 2 L
## 1073                         Sometimes    no              More than 2 L
## 1074                         Sometimes    no          Less than a liter
## 1075                         Sometimes    no          Between 1 and 2 L
## 1076                         Sometimes    no          Between 1 and 2 L
## 1077                         Sometimes    no              More than 2 L
## 1078                         Sometimes    no          Between 1 and 2 L
## 1079                         Sometimes    no          Between 1 and 2 L
## 1080                         Sometimes    no          Between 1 and 2 L
## 1081                         Sometimes    no          Between 1 and 2 L
## 1082                         Sometimes    no          Between 1 and 2 L
## 1083                         Sometimes    no          Between 1 and 2 L
## 1084                         Sometimes    no          Between 1 and 2 L
## 1085                         Sometimes    no          Less than a liter
## 1086                         Sometimes    no          Between 1 and 2 L
## 1087                         Sometimes    no              More than 2 L
## 1088                         Sometimes    no          Between 1 and 2 L
## 1089                         Sometimes    no          Between 1 and 2 L
## 1090                         Sometimes    no              More than 2 L
## 1091                         Sometimes    no          Between 1 and 2 L
## 1092                         Sometimes    no          Less than a liter
## 1093                         Sometimes    no          Between 1 and 2 L
## 1094                         Sometimes    no          Less than a liter
## 1095                         Sometimes    no          Between 1 and 2 L
## 1096                         Sometimes    no          Less than a liter
## 1097                         Sometimes    no              More than 2 L
## 1098                         Sometimes    no          Between 1 and 2 L
## 1099                         Sometimes    no              More than 2 L
## 1100                         Sometimes    no              More than 2 L
## 1101                         Sometimes    no          Between 1 and 2 L
## 1102                         Sometimes    no          Between 1 and 2 L
## 1103                         Sometimes    no              More than 2 L
## 1104                         Sometimes    no          Less than a liter
## 1105                         Sometimes    no              More than 2 L
## 1106                         Sometimes    no          Between 1 and 2 L
## 1107                         Sometimes    no          Between 1 and 2 L
## 1108                         Sometimes    no          Between 1 and 2 L
## 1109                         Sometimes    no          Between 1 and 2 L
## 1110                         Sometimes    no              More than 2 L
## 1111                         Sometimes    no          Between 1 and 2 L
## 1112                         Sometimes    no          Between 1 and 2 L
## 1113                         Sometimes    no          Between 1 and 2 L
## 1114                         Sometimes    no          Between 1 and 2 L
## 1115                         Sometimes    no          Between 1 and 2 L
## 1116                         Sometimes    no          Between 1 and 2 L
## 1117                         Sometimes    no          Between 1 and 2 L
## 1118                         Sometimes    no          Between 1 and 2 L
## 1119                         Sometimes    no          Between 1 and 2 L
## 1120                         Sometimes    no          Less than a liter
## 1121                         Sometimes    no          Between 1 and 2 L
## 1122                         Sometimes    no          Between 1 and 2 L
## 1123                         Sometimes    no          Between 1 and 2 L
## 1124                         Sometimes    no          Between 1 and 2 L
## 1125                         Sometimes    no          Between 1 and 2 L
## 1126                         Sometimes    no          Between 1 and 2 L
## 1127                         Sometimes    no          Between 1 and 2 L
## 1128                         Sometimes    no          Between 1 and 2 L
## 1129                         Sometimes    no          Between 1 and 2 L
## 1130                         Sometimes    no          Between 1 and 2 L
## 1131                         Sometimes    no          Between 1 and 2 L
## 1132                         Sometimes    no          Between 1 and 2 L
## 1133                         Sometimes    no          Between 1 and 2 L
## 1134                         Sometimes    no          Less than a liter
## 1135                         Sometimes    no          Between 1 and 2 L
## 1136                         Sometimes    no          Between 1 and 2 L
## 1137                         Sometimes    no              More than 2 L
## 1138                         Sometimes    no          Between 1 and 2 L
## 1139                         Sometimes    no          Less than a liter
## 1140                         Sometimes    no          Less than a liter
## 1141                         Sometimes    no          Between 1 and 2 L
## 1142                         Sometimes    no          Between 1 and 2 L
## 1143                         Sometimes    no          Less than a liter
## 1144                         Sometimes    no          Between 1 and 2 L
## 1145                         Sometimes    no          Between 1 and 2 L
## 1146                         Sometimes    no              More than 2 L
## 1147                         Sometimes    no          Less than a liter
## 1148                         Sometimes    no          Between 1 and 2 L
## 1149                         Sometimes    no          Between 1 and 2 L
## 1150                         Sometimes    no          Between 1 and 2 L
## 1151                         Sometimes    no              More than 2 L
## 1152                         Sometimes    no          Between 1 and 2 L
## 1153                         Sometimes    no          Between 1 and 2 L
## 1154                         Sometimes    no          Between 1 and 2 L
## 1155                         Sometimes    no          Less than a liter
## 1156                         Sometimes    no          Between 1 and 2 L
## 1157                         Sometimes    no              More than 2 L
## 1158                         Sometimes    no          Between 1 and 2 L
## 1159                         Sometimes    no          Between 1 and 2 L
## 1160                         Sometimes    no              More than 2 L
## 1161                         Sometimes    no          Between 1 and 2 L
## 1162                         Sometimes    no          Between 1 and 2 L
## 1163                         Sometimes    no          Less than a liter
## 1164                         Sometimes    no          Between 1 and 2 L
## 1165                         Sometimes    no          Less than a liter
## 1166                         Sometimes    no          Between 1 and 2 L
## 1167                         Sometimes    no          Between 1 and 2 L
## 1168                         Sometimes    no          Between 1 and 2 L
## 1169                         Sometimes    no          Between 1 and 2 L
## 1170                         Sometimes    no          Between 1 and 2 L
## 1171                         Sometimes    no          Between 1 and 2 L
## 1172                         Sometimes    no          Between 1 and 2 L
## 1173                         Sometimes    no          Between 1 and 2 L
## 1174                         Sometimes    no          Between 1 and 2 L
## 1175                         Sometimes    no              More than 2 L
## 1176                         Sometimes    no              More than 2 L
## 1177                         Sometimes    no          Between 1 and 2 L
## 1178                         Sometimes    no          Between 1 and 2 L
## 1179                         Sometimes    no          Between 1 and 2 L
## 1180                         Sometimes    no          Less than a liter
## 1181                         Sometimes    no              More than 2 L
## 1182                         Sometimes    no              More than 2 L
## 1183                         Sometimes    no          Between 1 and 2 L
## 1184                         Sometimes    no          Between 1 and 2 L
## 1185                         Sometimes    no              More than 2 L
## 1186                         Sometimes    no          Between 1 and 2 L
## 1187                         Sometimes    no              More than 2 L
## 1188                         Sometimes    no          Between 1 and 2 L
## 1189                         Sometimes    no          Between 1 and 2 L
## 1190                         Sometimes    no          Between 1 and 2 L
## 1191                         Sometimes    no          Between 1 and 2 L
## 1192                         Sometimes    no              More than 2 L
## 1193                         Sometimes    no          Between 1 and 2 L
## 1194                         Sometimes    no          Between 1 and 2 L
## 1195                         Sometimes    no          Less than a liter
## 1196                         Sometimes    no          Less than a liter
## 1197                         Sometimes    no          Between 1 and 2 L
## 1198                         Sometimes    no          Between 1 and 2 L
## 1199                         Sometimes    no              More than 2 L
## 1200                         Sometimes    no          Between 1 and 2 L
## 1201                         Sometimes    no              More than 2 L
## 1202                         Sometimes    no          Between 1 and 2 L
## 1203                         Sometimes    no          Between 1 and 2 L
## 1204                         Sometimes    no          Less than a liter
## 1205                         Sometimes    no          Between 1 and 2 L
## 1206                         Sometimes    no          Between 1 and 2 L
## 1207                         Sometimes    no          Between 1 and 2 L
## 1208                         Sometimes    no          Between 1 and 2 L
## 1209                         Sometimes    no          Less than a liter
## 1210                         Sometimes    no          Between 1 and 2 L
## 1211                         Sometimes    no              More than 2 L
## 1212                         Sometimes    no          Between 1 and 2 L
## 1213                         Sometimes    no              More than 2 L
## 1214                         Sometimes    no          Between 1 and 2 L
## 1215                         Sometimes    no          Between 1 and 2 L
## 1216                         Sometimes    no          Between 1 and 2 L
## 1217                         Sometimes    no          Between 1 and 2 L
## 1218                         Sometimes    no          Between 1 and 2 L
## 1219                         Sometimes    no              More than 2 L
## 1220                         Sometimes    no              More than 2 L
## 1221                         Sometimes    no              More than 2 L
## 1222                         Sometimes    no              More than 2 L
## 1223                         Sometimes    no              More than 2 L
## 1224                         Sometimes    no          Between 1 and 2 L
## 1225                         Sometimes    no          Between 1 and 2 L
## 1226                         Sometimes    no              More than 2 L
## 1227                         Sometimes    no              More than 2 L
## 1228                         Sometimes    no          Less than a liter
## 1229                         Sometimes    no          Between 1 and 2 L
## 1230                         Sometimes    no          Less than a liter
## 1231                         Sometimes    no          Between 1 and 2 L
## 1232                         Sometimes    no          Less than a liter
## 1233                         Sometimes    no          Between 1 and 2 L
## 1234                         Sometimes    no          Between 1 and 2 L
## 1235                         Sometimes    no              More than 2 L
## 1236                         Sometimes    no              More than 2 L
## 1237                         Sometimes    no          Between 1 and 2 L
## 1238                         Sometimes    no              More than 2 L
## 1239                         Sometimes    no          Between 1 and 2 L
## 1240                         Sometimes    no          Between 1 and 2 L
## 1241                         Sometimes    no              More than 2 L
## 1242                         Sometimes    no          Less than a liter
## 1243                         Sometimes    no          Less than a liter
## 1244                         Sometimes    no              More than 2 L
## 1245                         Sometimes    no          Between 1 and 2 L
## 1246                         Sometimes    no          Between 1 and 2 L
## 1247                         Sometimes    no              More than 2 L
## 1248                         Sometimes    no          Between 1 and 2 L
## 1249                         Sometimes    no          Less than a liter
## 1250                         Sometimes    no          Between 1 and 2 L
## 1251                         Sometimes    no          Between 1 and 2 L
## 1252                         Sometimes    no          Less than a liter
## 1253                         Sometimes    no          Between 1 and 2 L
## 1254                         Sometimes    no          Between 1 and 2 L
## 1255                         Sometimes    no          Between 1 and 2 L
## 1256                         Sometimes    no              More than 2 L
## 1257                         Sometimes    no          Between 1 and 2 L
## 1258                         Sometimes    no          Between 1 and 2 L
## 1259                         Sometimes    no          Less than a liter
## 1260                         Sometimes    no          Between 1 and 2 L
## 1261                         Sometimes    no              More than 2 L
## 1262                         Sometimes    no              More than 2 L
## 1263                         Sometimes    no              More than 2 L
## 1264                         Sometimes    no          Between 1 and 2 L
## 1265                         Sometimes    no          Between 1 and 2 L
## 1266                         Sometimes    no          Between 1 and 2 L
## 1267                         Sometimes    no          Between 1 and 2 L
## 1268                         Sometimes    no          Between 1 and 2 L
## 1269                         Sometimes    no          Between 1 and 2 L
## 1270                         Sometimes    no              More than 2 L
## 1271                         Sometimes    no          Between 1 and 2 L
## 1272                         Sometimes    no          Between 1 and 2 L
## 1273                         Sometimes    no          Less than a liter
## 1274                         Sometimes    no          Between 1 and 2 L
## 1275                         Sometimes    no          Less than a liter
## 1276                         Sometimes    no          Between 1 and 2 L
## 1277                         Sometimes    no          Between 1 and 2 L
## 1278                         Sometimes    no          Less than a liter
## 1279                         Sometimes    no              More than 2 L
## 1280                         Sometimes    no              More than 2 L
## 1281                         Sometimes    no              More than 2 L
## 1282                         Sometimes    no              More than 2 L
## 1283                         Sometimes    no          Between 1 and 2 L
## 1284                         Sometimes    no          Between 1 and 2 L
## 1285                         Sometimes    no          Between 1 and 2 L
## 1286                         Sometimes    no          Between 1 and 2 L
## 1287                         Sometimes    no          Between 1 and 2 L
## 1288                         Sometimes    no          Between 1 and 2 L
## 1289                         Sometimes    no          Between 1 and 2 L
## 1290                         Sometimes    no          Less than a liter
## 1291                         Sometimes    no          Between 1 and 2 L
## 1292                         Sometimes    no              More than 2 L
## 1293                         Sometimes    no              More than 2 L
## 1294                         Sometimes    no          Between 1 and 2 L
## 1295                         Sometimes    no          Between 1 and 2 L
## 1296                         Sometimes    no          Less than a liter
## 1297                         Sometimes    no          Between 1 and 2 L
## 1298                         Sometimes    no              More than 2 L
## 1299                         Sometimes    no              More than 2 L
## 1300                         Sometimes    no              More than 2 L
## 1301                         Sometimes    no              More than 2 L
## 1302                         Sometimes    no          Less than a liter
## 1303                         Sometimes    no          Less than a liter
## 1304                         Sometimes    no          Less than a liter
## 1305                         Sometimes    no          Less than a liter
## 1306                         Sometimes    no          Between 1 and 2 L
## 1307                         Sometimes    no              More than 2 L
## 1308                         Sometimes    no          Between 1 and 2 L
## 1309                         Sometimes    no          Less than a liter
## 1310                         Sometimes    no          Less than a liter
## 1311                         Sometimes    no          Between 1 and 2 L
## 1312                         Sometimes    no          Between 1 and 2 L
## 1313                         Sometimes    no          Between 1 and 2 L
## 1314                         Sometimes    no          Between 1 and 2 L
## 1315                         Sometimes    no          Between 1 and 2 L
## 1316                         Sometimes    no          Between 1 and 2 L
## 1317                         Sometimes    no              More than 2 L
## 1318                         Sometimes    no              More than 2 L
## 1319                         Sometimes    no              More than 2 L
## 1320                         Sometimes    no              More than 2 L
## 1321                         Sometimes    no              More than 2 L
## 1322                         Sometimes    no              More than 2 L
## 1323                         Sometimes    no              More than 2 L
## 1324                         Sometimes    no          Between 1 and 2 L
## 1325                         Sometimes    no          Between 1 and 2 L
## 1326                         Sometimes    no          Between 1 and 2 L
## 1327                         Sometimes    no          Less than a liter
## 1328                         Sometimes    no              More than 2 L
## 1329                         Sometimes    no              More than 2 L
## 1330                         Sometimes    no          Between 1 and 2 L
## 1331                         Sometimes    no          Between 1 and 2 L
## 1332                         Sometimes    no          Between 1 and 2 L
## 1333                         Sometimes    no          Between 1 and 2 L
## 1334                         Sometimes    no          Between 1 and 2 L
## 1335                         Sometimes    no          Between 1 and 2 L
## 1336                         Sometimes    no              More than 2 L
## 1337                         Sometimes    no              More than 2 L
## 1338                         Sometimes    no          Less than a liter
## 1339                         Sometimes    no          Less than a liter
## 1340                         Sometimes    no          Between 1 and 2 L
## 1341                         Sometimes    no              More than 2 L
## 1342                         Sometimes    no          Less than a liter
## 1343                         Sometimes    no          Between 1 and 2 L
## 1344                         Sometimes    no          Between 1 and 2 L
## 1345                         Sometimes    no          Between 1 and 2 L
## 1346                         Sometimes    no          Less than a liter
## 1347                         Sometimes    no          Between 1 and 2 L
## 1348                         Sometimes    no              More than 2 L
## 1349                         Sometimes    no          Between 1 and 2 L
## 1350                         Sometimes    no              More than 2 L
## 1351                         Sometimes    no              More than 2 L
## 1352                         Sometimes    no          Between 1 and 2 L
## 1353                         Sometimes    no          Between 1 and 2 L
## 1354                         Sometimes    no          Between 1 and 2 L
## 1355                         Sometimes    no          Between 1 and 2 L
## 1356                         Sometimes    no          Less than a liter
## 1357                         Sometimes    no          Less than a liter
## 1358                         Sometimes    no              More than 2 L
## 1359                         Sometimes    no              More than 2 L
## 1360                         Sometimes    no          Between 1 and 2 L
## 1361                         Sometimes    no          Less than a liter
## 1362                         Sometimes    no          Between 1 and 2 L
## 1363                         Sometimes    no          Less than a liter
## 1364                         Sometimes    no          Less than a liter
## 1365                         Sometimes    no          Less than a liter
## 1366                         Sometimes    no          Less than a liter
## 1367                         Sometimes    no          Less than a liter
## 1368                         Sometimes    no          Between 1 and 2 L
## 1369                         Sometimes    no          Between 1 and 2 L
## 1370                         Sometimes    no          Between 1 and 2 L
## 1371                         Sometimes    no          Less than a liter
## 1372                         Sometimes    no              More than 2 L
## 1373                         Sometimes    no          Between 1 and 2 L
## 1374                         Sometimes    no          Between 1 and 2 L
## 1375                         Sometimes    no          Between 1 and 2 L
## 1376                         Sometimes    no          Between 1 and 2 L
## 1377                         Sometimes    no          Between 1 and 2 L
## 1378                         Sometimes    no          Between 1 and 2 L
## 1379                         Sometimes    no              More than 2 L
## 1380                         Sometimes    no              More than 2 L
## 1381                         Sometimes    no              More than 2 L
## 1382                         Sometimes    no          Between 1 and 2 L
## 1383                         Sometimes    no          Between 1 and 2 L
## 1384                         Sometimes    no          Between 1 and 2 L
## 1385                         Sometimes    no          Between 1 and 2 L
## 1386                         Sometimes    no          Between 1 and 2 L
## 1387                         Sometimes    no          Between 1 and 2 L
## 1388                         Sometimes    no          Between 1 and 2 L
## 1389                         Sometimes    no          Less than a liter
## 1390                         Sometimes    no          Between 1 and 2 L
## 1391                         Sometimes    no              More than 2 L
## 1392                         Sometimes    no              More than 2 L
## 1393                         Sometimes    no          Between 1 and 2 L
## 1394                         Sometimes    no          Between 1 and 2 L
## 1395                         Sometimes    no          Between 1 and 2 L
## 1396                         Sometimes    no              More than 2 L
## 1397                         Sometimes    no              More than 2 L
## 1398                         Sometimes    no              More than 2 L
## 1399                         Sometimes    no          Between 1 and 2 L
## 1400                         Sometimes    no              More than 2 L
## 1401                         Sometimes    no              More than 2 L
## 1402                         Sometimes    no          Less than a liter
## 1403                         Sometimes    no          Between 1 and 2 L
## 1404                         Sometimes    no          Between 1 and 2 L
## 1405                         Sometimes    no          Between 1 and 2 L
## 1406                         Sometimes    no              More than 2 L
## 1407                         Sometimes    no              More than 2 L
## 1408                         Sometimes    no              More than 2 L
## 1409                         Sometimes    no              More than 2 L
## 1410                         Sometimes    no          Less than a liter
## 1411                         Sometimes    no          Less than a liter
## 1412                         Sometimes    no          Between 1 and 2 L
## 1413                         Sometimes    no              More than 2 L
## 1414                         Sometimes    no          Between 1 and 2 L
## 1415                         Sometimes    no          Less than a liter
## 1416                         Sometimes    no          Less than a liter
## 1417                         Sometimes    no          Less than a liter
## 1418                         Sometimes    no          Less than a liter
## 1419                         Sometimes    no          Between 1 and 2 L
## 1420                         Sometimes    no          Between 1 and 2 L
## 1421                         Sometimes    no          Between 1 and 2 L
## 1422                         Sometimes    no          Between 1 and 2 L
## 1423                         Sometimes    no          Between 1 and 2 L
## 1424                         Sometimes    no              More than 2 L
## 1425                         Sometimes    no              More than 2 L
## 1426                         Sometimes    no              More than 2 L
## 1427                         Sometimes    no              More than 2 L
## 1428                         Sometimes    no          Between 1 and 2 L
## 1429                         Sometimes    no              More than 2 L
## 1430                         Sometimes    no              More than 2 L
## 1431                         Sometimes    no              More than 2 L
## 1432                         Sometimes    no          Between 1 and 2 L
## 1433                         Sometimes    no          Between 1 and 2 L
## 1434                         Sometimes    no          Between 1 and 2 L
## 1435                         Sometimes    no          Between 1 and 2 L
## 1436                         Sometimes    no              More than 2 L
## 1437                         Sometimes    no              More than 2 L
## 1438                         Sometimes    no          Less than a liter
## 1439                         Sometimes    no          Between 1 and 2 L
## 1440                         Sometimes    no          Less than a liter
## 1441                         Sometimes    no          Less than a liter
## 1442                         Sometimes    no              More than 2 L
## 1443                         Sometimes    no              More than 2 L
## 1444                         Sometimes    no          Between 1 and 2 L
## 1445                         Sometimes    no          Between 1 and 2 L
## 1446                         Sometimes    no          Between 1 and 2 L
## 1447                         Sometimes    no              More than 2 L
## 1448                         Sometimes    no              More than 2 L
## 1449                         Sometimes    no              More than 2 L
## 1450                         Sometimes    no          Between 1 and 2 L
## 1451                         Sometimes    no          Between 1 and 2 L
## 1452                         Sometimes    no          Between 1 and 2 L
## 1453                         Sometimes    no          Less than a liter
## 1454                         Sometimes    no              More than 2 L
## 1455                         Sometimes    no          Between 1 and 2 L
## 1456                         Sometimes    no          Between 1 and 2 L
## 1457                         Sometimes    no          Between 1 and 2 L
## 1458                         Sometimes    no          Less than a liter
## 1459                         Sometimes    no          Less than a liter
## 1460                         Sometimes    no              More than 2 L
## 1461                         Sometimes    no          Between 1 and 2 L
## 1462                         Sometimes    no          Between 1 and 2 L
## 1463                         Sometimes    no          Between 1 and 2 L
## 1464                         Sometimes    no          Less than a liter
## 1465                         Sometimes    no          Between 1 and 2 L
## 1466                         Sometimes    no              More than 2 L
## 1467                         Sometimes    no              More than 2 L
## 1468                         Sometimes    no          Between 1 and 2 L
## 1469                         Sometimes    no          Between 1 and 2 L
## 1470                         Sometimes    no          Between 1 and 2 L
## 1471                         Sometimes    no          Between 1 and 2 L
## 1472                         Sometimes    no          Less than a liter
## 1473                         Sometimes    no          Less than a liter
## 1474                         Sometimes    no          Between 1 and 2 L
## 1475                         Sometimes    no          Between 1 and 2 L
## 1476                         Sometimes    no              More than 2 L
## 1477                         Sometimes    no              More than 2 L
## 1478                         Sometimes    no          Between 1 and 2 L
## 1479                         Sometimes    no              More than 2 L
## 1480                         Sometimes    no              More than 2 L
## 1481                         Sometimes    no              More than 2 L
## 1482                         Sometimes    no          Between 1 and 2 L
## 1483                         Sometimes    no          Between 1 and 2 L
## 1484                         Sometimes    no          Between 1 and 2 L
## 1485                         Sometimes    no          Between 1 and 2 L
## 1486                         Sometimes    no          Between 1 and 2 L
## 1487                         Sometimes    no          Between 1 and 2 L
## 1488                         Sometimes    no          Less than a liter
## 1489                         Sometimes    no          Between 1 and 2 L
## 1490                         Sometimes    no          Between 1 and 2 L
## 1491                         Sometimes    no              More than 2 L
## 1492                         Sometimes    no              More than 2 L
## 1493                         Sometimes    no          Between 1 and 2 L
## 1494                         Sometimes    no              More than 2 L
## 1495                         Sometimes    no              More than 2 L
## 1496                         Sometimes    no          Between 1 and 2 L
## 1497                         Sometimes    no          Between 1 and 2 L
## 1498                         Sometimes    no          Between 1 and 2 L
## 1499                         Sometimes    no          Less than a liter
## 1500                         Sometimes    no          Between 1 and 2 L
## 1501                         Sometimes    no          Less than a liter
## 1502                         Sometimes    no          Between 1 and 2 L
## 1503                         Sometimes    no              More than 2 L
## 1504                         Sometimes    no          Less than a liter
## 1505                         Sometimes    no          Less than a liter
## 1506                         Sometimes    no              More than 2 L
## 1507                         Sometimes    no          Between 1 and 2 L
## 1508                         Sometimes    no          Between 1 and 2 L
## 1509                         Sometimes    no          Between 1 and 2 L
## 1510                         Sometimes    no          Less than a liter
## 1511                         Sometimes    no          Less than a liter
## 1512                         Sometimes    no              More than 2 L
## 1513                         Sometimes    no          Between 1 and 2 L
## 1514                         Sometimes    no          Between 1 and 2 L
## 1515                         Sometimes    no          Between 1 and 2 L
## 1516                         Sometimes    no          Less than a liter
## 1517                         Sometimes    no          Less than a liter
## 1518                         Sometimes    no          Between 1 and 2 L
## 1519                         Sometimes    no          Between 1 and 2 L
## 1520                         Sometimes    no          Between 1 and 2 L
## 1521                         Sometimes    no          Between 1 and 2 L
## 1522                         Sometimes    no          Between 1 and 2 L
## 1523                         Sometimes    no          Between 1 and 2 L
## 1524                         Sometimes    no              More than 2 L
## 1525                         Sometimes    no              More than 2 L
## 1526                         Sometimes   yes          Between 1 and 2 L
## 1527                         Sometimes   yes          Less than a liter
## 1528                         Sometimes    no          Between 1 and 2 L
## 1529                         Sometimes    no          Between 1 and 2 L
## 1530                         Sometimes    no          Between 1 and 2 L
## 1531                         Sometimes    no          Less than a liter
## 1532                         Sometimes    no          Between 1 and 2 L
## 1533                         Sometimes    no          Between 1 and 2 L
## 1534                         Sometimes    no          Less than a liter
## 1535                         Sometimes    no          Between 1 and 2 L
## 1536                         Sometimes    no          Between 1 and 2 L
## 1537                         Sometimes    no          Between 1 and 2 L
## 1538                         Sometimes    no          Less than a liter
## 1539                         Sometimes    no          Less than a liter
## 1540                         Sometimes    no          Less than a liter
## 1541                         Sometimes    no              More than 2 L
## 1542                         Sometimes    no          Between 1 and 2 L
## 1543                         Sometimes    no          Between 1 and 2 L
## 1544                         Sometimes    no          Between 1 and 2 L
## 1545                         Sometimes    no          Between 1 and 2 L
## 1546                         Sometimes    no          Between 1 and 2 L
## 1547                         Sometimes    no              More than 2 L
## 1548                         Sometimes    no          Between 1 and 2 L
## 1549                         Sometimes    no          Between 1 and 2 L
## 1550                         Sometimes    no          Between 1 and 2 L
## 1551                         Sometimes    no          Between 1 and 2 L
## 1552                         Sometimes    no          Less than a liter
## 1553                         Sometimes    no          Less than a liter
## 1554                         Sometimes    no          Between 1 and 2 L
## 1555                         Sometimes    no          Less than a liter
## 1556                         Sometimes    no          Less than a liter
## 1557                         Sometimes    no          Less than a liter
## 1558                         Sometimes    no          Between 1 and 2 L
## 1559                         Sometimes    no          Between 1 and 2 L
## 1560                         Sometimes    no          Between 1 and 2 L
## 1561                         Sometimes    no          Between 1 and 2 L
## 1562                         Sometimes    no          Between 1 and 2 L
## 1563                         Sometimes    no          Less than a liter
## 1564                         Sometimes    no          Less than a liter
## 1565                         Sometimes    no          Between 1 and 2 L
## 1566                         Sometimes    no          Between 1 and 2 L
## 1567                         Sometimes    no          Less than a liter
## 1568                         Sometimes    no          Between 1 and 2 L
## 1569                         Sometimes    no          Between 1 and 2 L
## 1570                         Sometimes    no              More than 2 L
## 1571                         Sometimes    no              More than 2 L
## 1572                         Sometimes    no          Between 1 and 2 L
## 1573                         Sometimes    no              More than 2 L
## 1574                         Sometimes    no          Between 1 and 2 L
## 1575                         Sometimes    no          Between 1 and 2 L
## 1576                         Sometimes    no          Between 1 and 2 L
## 1577                         Sometimes    no          Between 1 and 2 L
## 1578                         Sometimes    no              More than 2 L
## 1579                         Sometimes    no          Between 1 and 2 L
## 1580                         Sometimes    no          Between 1 and 2 L
## 1581                         Sometimes    no          Between 1 and 2 L
## 1582                         Sometimes    no          Between 1 and 2 L
## 1583                         Sometimes    no          Between 1 and 2 L
## 1584                         Sometimes   yes          Less than a liter
## 1585                         Sometimes   yes          Between 1 and 2 L
## 1586                         Sometimes    no          Between 1 and 2 L
## 1587                         Sometimes    no          Between 1 and 2 L
## 1588                         Sometimes    no              More than 2 L
## 1589                         Sometimes    no          Between 1 and 2 L
## 1590                         Sometimes    no          Between 1 and 2 L
## 1591                         Sometimes    no          Between 1 and 2 L
## 1592                         Sometimes    no          Less than a liter
## 1593                         Sometimes    no          Less than a liter
## 1594                         Sometimes    no              More than 2 L
## 1595                         Sometimes    no          Between 1 and 2 L
## 1596                         Sometimes    no          Between 1 and 2 L
## 1597                         Sometimes    no          Between 1 and 2 L
## 1598                         Sometimes    no          Less than a liter
## 1599                         Sometimes    no          Less than a liter
## 1600                         Sometimes    no          Less than a liter
## 1601                         Sometimes    no          Between 1 and 2 L
## 1602                         Sometimes    no          Between 1 and 2 L
## 1603                         Sometimes    no          Between 1 and 2 L
## 1604                         Sometimes    no          Less than a liter
## 1605                         Sometimes    no          Less than a liter
## 1606                         Sometimes    no          Less than a liter
## 1607                         Sometimes    no          Between 1 and 2 L
## 1608                         Sometimes    no          Between 1 and 2 L
## 1609                         Sometimes    no          Between 1 and 2 L
## 1610                         Sometimes    no          Between 1 and 2 L
## 1611                         Sometimes    no          Between 1 and 2 L
## 1612                         Sometimes    no              More than 2 L
## 1613                         Sometimes    no              More than 2 L
## 1614                         Sometimes    no          Between 1 and 2 L
## 1615                         Sometimes    no          Between 1 and 2 L
## 1616                         Sometimes    no          Between 1 and 2 L
## 1617                         Sometimes    no          Between 1 and 2 L
## 1618                         Sometimes    no          Less than a liter
## 1619                         Sometimes    no          Less than a liter
## 1620                         Sometimes    no          Less than a liter
## 1621                         Sometimes    no          Less than a liter
## 1622                         Sometimes    no          Less than a liter
## 1623                         Sometimes    no          Less than a liter
## 1624                         Sometimes    no          Between 1 and 2 L
## 1625                         Sometimes    no          Between 1 and 2 L
## 1626                         Sometimes    no          Between 1 and 2 L
## 1627                         Sometimes    no          Between 1 and 2 L
## 1628                         Sometimes    no          Less than a liter
## 1629                         Sometimes    no          Less than a liter
## 1630                         Sometimes    no          Less than a liter
## 1631                         Sometimes    no          Less than a liter
## 1632                         Sometimes    no          Between 1 and 2 L
## 1633                         Sometimes    no          Less than a liter
## 1634                         Sometimes    no          Between 1 and 2 L
## 1635                         Sometimes    no          Between 1 and 2 L
## 1636                         Sometimes    no          Between 1 and 2 L
## 1637                         Sometimes    no          Between 1 and 2 L
## 1638                         Sometimes    no          Between 1 and 2 L
## 1639                         Sometimes    no              More than 2 L
## 1640                         Sometimes    no          Between 1 and 2 L
## 1641                         Sometimes    no          Between 1 and 2 L
## 1642                         Sometimes    no          Between 1 and 2 L
## 1643                         Sometimes    no          Between 1 and 2 L
## 1644                         Sometimes    no              More than 2 L
## 1645                         Sometimes    no              More than 2 L
## 1646                         Sometimes    no              More than 2 L
## 1647                         Sometimes    no              More than 2 L
## 1648                         Sometimes    no          Between 1 and 2 L
## 1649                         Sometimes    no          Between 1 and 2 L
## 1650                         Sometimes   yes          Less than a liter
## 1651                         Sometimes   yes          Less than a liter
## 1652                         Sometimes    no          Between 1 and 2 L
## 1653                         Sometimes    no          Between 1 and 2 L
## 1654                         Sometimes    no          Between 1 and 2 L
## 1655                         Sometimes    no          Between 1 and 2 L
## 1656                         Sometimes    no          Between 1 and 2 L
## 1657                         Sometimes    no          Between 1 and 2 L
## 1658                         Sometimes    no          Less than a liter
## 1659                         Sometimes    no          Less than a liter
## 1660                         Sometimes    no          Between 1 and 2 L
## 1661                         Sometimes    no          Between 1 and 2 L
## 1662                         Sometimes    no          Between 1 and 2 L
## 1663                         Sometimes    no          Between 1 and 2 L
## 1664                         Sometimes    no          Less than a liter
## 1665                         Sometimes    no          Less than a liter
## 1666                         Sometimes    no          Less than a liter
## 1667                         Sometimes    no          Between 1 and 2 L
## 1668                         Sometimes    no          Between 1 and 2 L
## 1669                         Sometimes    no          Between 1 and 2 L
## 1670                         Sometimes    no          Between 1 and 2 L
## 1671                         Sometimes    no          Between 1 and 2 L
## 1672                         Sometimes    no          Less than a liter
## 1673                         Sometimes    no          Less than a liter
## 1674                         Sometimes    no          Less than a liter
## 1675                         Sometimes    no          Less than a liter
## 1676                         Sometimes   yes          Less than a liter
## 1677                         Sometimes   yes          Less than a liter
## 1678                         Sometimes    no              More than 2 L
## 1679                         Sometimes    no          Between 1 and 2 L
## 1680                         Sometimes    no          Between 1 and 2 L
## 1681                         Sometimes    no          Between 1 and 2 L
## 1682                         Sometimes    no          Between 1 and 2 L
## 1683                         Sometimes    no          Between 1 and 2 L
## 1684                         Sometimes    no          Between 1 and 2 L
## 1685                         Sometimes    no          Between 1 and 2 L
## 1686                         Sometimes    no          Between 1 and 2 L
## 1687                         Sometimes    no          Between 1 and 2 L
## 1688                         Sometimes    no          Between 1 and 2 L
## 1689                         Sometimes    no          Between 1 and 2 L
## 1690                         Sometimes    no              More than 2 L
## 1691                         Sometimes    no              More than 2 L
## 1692                         Sometimes    no          Between 1 and 2 L
## 1693                         Sometimes    no          Between 1 and 2 L
## 1694                         Sometimes    no              More than 2 L
## 1695                         Sometimes    no          Between 1 and 2 L
## 1696                         Sometimes    no          Between 1 and 2 L
## 1697                         Sometimes    no          Between 1 and 2 L
## 1698                         Sometimes    no          Between 1 and 2 L
## 1699                         Sometimes    no          Between 1 and 2 L
## 1700                         Sometimes    no          Less than a liter
## 1701                         Sometimes    no          Less than a liter
## 1702                         Sometimes    no          Less than a liter
## 1703                         Sometimes    no          Less than a liter
## 1704                         Sometimes    no          Between 1 and 2 L
## 1705                         Sometimes    no          Between 1 and 2 L
## 1706                         Sometimes    no          Between 1 and 2 L
## 1707                         Sometimes    no          Between 1 and 2 L
## 1708                         Sometimes    no          Less than a liter
## 1709                         Sometimes    no          Less than a liter
## 1710                         Sometimes    no          Less than a liter
## 1711                         Sometimes    no          Less than a liter
## 1712                         Sometimes    no          Between 1 and 2 L
## 1713                         Sometimes    no          Between 1 and 2 L
## 1714                         Sometimes    no          Between 1 and 2 L
## 1715                         Sometimes    no          Between 1 and 2 L
## 1716                         Sometimes    no          Between 1 and 2 L
## 1717                         Sometimes    no          Between 1 and 2 L
## 1718                         Sometimes    no          Between 1 and 2 L
## 1719                         Sometimes    no          Between 1 and 2 L
## 1720                         Sometimes    no          Between 1 and 2 L
## 1721                         Sometimes    no          Between 1 and 2 L
## 1722                         Sometimes    no          Less than a liter
## 1723                         Sometimes    no          Between 1 and 2 L
## 1724                         Sometimes    no          Less than a liter
## 1725                         Sometimes    no          Less than a liter
## 1726                         Sometimes    no          Less than a liter
## 1727                         Sometimes    no          Less than a liter
## 1728                         Sometimes   yes          Less than a liter
## 1729                         Sometimes   yes          Between 1 and 2 L
## 1730                         Sometimes    no          Less than a liter
## 1731                         Sometimes    no          Less than a liter
## 1732                         Sometimes    no          Between 1 and 2 L
## 1733                         Sometimes    no          Between 1 and 2 L
## 1734                         Sometimes    no          Between 1 and 2 L
## 1735                         Sometimes    no          Between 1 and 2 L
## 1736                         Sometimes    no              More than 2 L
## 1737                         Sometimes    no              More than 2 L
## 1738                         Sometimes    no              More than 2 L
## 1739                         Sometimes    no              More than 2 L
## 1740                         Sometimes    no          Between 1 and 2 L
## 1741                         Sometimes    no          Between 1 and 2 L
## 1742                         Sometimes    no              More than 2 L
## 1743                         Sometimes    no              More than 2 L
## 1744                         Sometimes    no          Between 1 and 2 L
## 1745                         Sometimes    no          Between 1 and 2 L
## 1746                         Sometimes    no          Between 1 and 2 L
## 1747                         Sometimes    no          Between 1 and 2 L
## 1748                         Sometimes    no          Between 1 and 2 L
## 1749                         Sometimes    no          Between 1 and 2 L
## 1750                         Sometimes    no          Between 1 and 2 L
## 1751                         Sometimes    no          Between 1 and 2 L
## 1752                         Sometimes    no              More than 2 L
## 1753                         Sometimes    no              More than 2 L
## 1754                         Sometimes    no              More than 2 L
## 1755                         Sometimes    no              More than 2 L
## 1756                         Sometimes    no          Between 1 and 2 L
## 1757                         Sometimes    no          Between 1 and 2 L
## 1758                         Sometimes    no          Between 1 and 2 L
## 1759                         Sometimes    no          Between 1 and 2 L
## 1760                         Sometimes    no          Between 1 and 2 L
## 1761                         Sometimes    no          Between 1 and 2 L
## 1762                         Sometimes    no          Between 1 and 2 L
## 1763                         Sometimes    no          Between 1 and 2 L
## 1764                         Sometimes   yes          Between 1 and 2 L
## 1765                         Sometimes   yes          Less than a liter
## 1766                         Sometimes    no          Between 1 and 2 L
## 1767                         Sometimes    no          Between 1 and 2 L
## 1768                         Sometimes    no          Between 1 and 2 L
## 1769                         Sometimes    no          Between 1 and 2 L
## 1770                         Sometimes    no          Between 1 and 2 L
## 1771                         Sometimes    no          Between 1 and 2 L
## 1772                         Sometimes    no          Between 1 and 2 L
## 1773                         Sometimes    no          Between 1 and 2 L
## 1774                         Sometimes    no          Between 1 and 2 L
## 1775                         Sometimes    no              More than 2 L
## 1776                         Sometimes    no          Between 1 and 2 L
## 1777                         Sometimes    no          Between 1 and 2 L
## 1778                         Sometimes    no          Between 1 and 2 L
## 1779                         Sometimes    no          Between 1 and 2 L
## 1780                         Sometimes    no          Less than a liter
## 1781                         Sometimes    no          Less than a liter
## 1782                         Sometimes    no          Less than a liter
## 1783                         Sometimes    no          Less than a liter
## 1784                         Sometimes    no              More than 2 L
## 1785                         Sometimes    no              More than 2 L
## 1786                         Sometimes    no          Between 1 and 2 L
## 1787                         Sometimes    no          Between 1 and 2 L
## 1788                         Sometimes    no          Between 1 and 2 L
## 1789                         Sometimes    no              More than 2 L
## 1790                         Sometimes    no          Between 1 and 2 L
## 1791                         Sometimes    no              More than 2 L
## 1792                         Sometimes    no          Less than a liter
## 1793                         Sometimes    no          Less than a liter
## 1794                         Sometimes    no          Less than a liter
## 1795                         Sometimes    no          Less than a liter
## 1796                         Sometimes    no          Between 1 and 2 L
## 1797                         Sometimes    no          Less than a liter
## 1798                         Sometimes    no          Less than a liter
## 1799                         Sometimes    no          Less than a liter
## 1800                         Sometimes    no          Less than a liter
## 1801                         Sometimes    no          Less than a liter
## 1802                         Sometimes    no              More than 2 L
## 1803                         Sometimes    no          Between 1 and 2 L
## 1804                         Sometimes    no              More than 2 L
## 1805                         Sometimes    no          Less than a liter
## 1806                         Sometimes    no          Between 1 and 2 L
## 1807                         Sometimes    no          Less than a liter
## 1808                         Sometimes    no          Less than a liter
## 1809                         Sometimes    no          Less than a liter
## 1810                         Sometimes    no              More than 2 L
## 1811                         Sometimes    no              More than 2 L
## 1812                         Sometimes    no          Less than a liter
## 1813                         Sometimes    no          Between 1 and 2 L
## 1814                         Sometimes    no          Between 1 and 2 L
## 1815                         Sometimes    no          Between 1 and 2 L
## 1816                         Sometimes    no              More than 2 L
## 1817                         Sometimes    no              More than 2 L
## 1818                         Sometimes    no              More than 2 L
## 1819                         Sometimes    no              More than 2 L
## 1820                         Sometimes    no              More than 2 L
## 1821                         Sometimes    no              More than 2 L
## 1822                         Sometimes    no          Between 1 and 2 L
## 1823                         Sometimes    no              More than 2 L
## 1824                         Sometimes    no          Less than a liter
## 1825                         Sometimes    no          Less than a liter
## 1826                         Sometimes    no              More than 2 L
## 1827                         Sometimes    no          Between 1 and 2 L
## 1828                         Sometimes    no              More than 2 L
## 1829                         Sometimes    no              More than 2 L
## 1830                         Sometimes    no          Between 1 and 2 L
## 1831                         Sometimes    no          Less than a liter
## 1832                         Sometimes    no          Less than a liter
## 1833                         Sometimes    no          Less than a liter
## 1834                         Sometimes    no              More than 2 L
## 1835                         Sometimes    no              More than 2 L
## 1836                         Sometimes    no          Less than a liter
## 1837                         Sometimes    no              More than 2 L
## 1838                         Sometimes    no              More than 2 L
## 1839                         Sometimes    no          Between 1 and 2 L
## 1840                         Sometimes    no              More than 2 L
## 1841                         Sometimes    no              More than 2 L
## 1842                         Sometimes    no              More than 2 L
## 1843                         Sometimes    no              More than 2 L
## 1844                         Sometimes    no              More than 2 L
## 1845                         Sometimes    no          Between 1 and 2 L
## 1846                         Sometimes    no              More than 2 L
## 1847                         Sometimes    no              More than 2 L
## 1848                         Sometimes    no          Less than a liter
## 1849                         Sometimes    no          Less than a liter
## 1850                         Sometimes    no              More than 2 L
## 1851                         Sometimes    no          Less than a liter
## 1852                         Sometimes    no              More than 2 L
## 1853                         Sometimes    no              More than 2 L
## 1854                         Sometimes    no          Between 1 and 2 L
## 1855                         Sometimes    no          Between 1 and 2 L
## 1856                         Sometimes    no              More than 2 L
## 1857                         Sometimes    no              More than 2 L
## 1858                         Sometimes    no              More than 2 L
## 1859                         Sometimes    no          Between 1 and 2 L
## 1860                         Sometimes    no          Between 1 and 2 L
## 1861                         Sometimes    no          Less than a liter
## 1862                         Sometimes    no          Between 1 and 2 L
## 1863                         Sometimes    no          Between 1 and 2 L
## 1864                         Sometimes    no          Less than a liter
## 1865                         Sometimes    no          Between 1 and 2 L
## 1866                         Sometimes    no          Between 1 and 2 L
## 1867                         Sometimes    no          Between 1 and 2 L
## 1868                         Sometimes    no              More than 2 L
## 1869                         Sometimes    no              More than 2 L
## 1870                         Sometimes    no              More than 2 L
## 1871                         Sometimes    no          Between 1 and 2 L
## 1872                         Sometimes    no          Between 1 and 2 L
## 1873                         Sometimes    no          Between 1 and 2 L
## 1874                         Sometimes    no              More than 2 L
## 1875                         Sometimes    no              More than 2 L
## 1876                         Sometimes    no              More than 2 L
## 1877                         Sometimes    no          Between 1 and 2 L
## 1878                         Sometimes    no          Between 1 and 2 L
## 1879                         Sometimes    no          Between 1 and 2 L
## 1880                         Sometimes    no          Between 1 and 2 L
## 1881                         Sometimes    no              More than 2 L
## 1882                         Sometimes    no              More than 2 L
## 1883                         Sometimes    no              More than 2 L
## 1884                         Sometimes    no              More than 2 L
## 1885                         Sometimes    no              More than 2 L
## 1886                         Sometimes    no              More than 2 L
## 1887                         Sometimes    no              More than 2 L
## 1888                         Sometimes    no          Between 1 and 2 L
## 1889                         Sometimes    no          Between 1 and 2 L
## 1890                         Sometimes    no              More than 2 L
## 1891                         Sometimes    no          Between 1 and 2 L
## 1892                         Sometimes    no          Between 1 and 2 L
## 1893                         Sometimes    no          Between 1 and 2 L
## 1894                         Sometimes    no          Between 1 and 2 L
## 1895                         Sometimes    no              More than 2 L
## 1896                         Sometimes    no          Less than a liter
## 1897                         Sometimes    no          Less than a liter
## 1898                         Sometimes    no          Between 1 and 2 L
## 1899                         Sometimes    no          Between 1 and 2 L
## 1900                         Sometimes    no              More than 2 L
## 1901                         Sometimes    no              More than 2 L
## 1902                         Sometimes    no          Less than a liter
## 1903                         Sometimes    no          Less than a liter
## 1904                         Sometimes    no          Less than a liter
## 1905                         Sometimes    no          Less than a liter
## 1906                         Sometimes    no              More than 2 L
## 1907                         Sometimes    no              More than 2 L
## 1908                         Sometimes    no          Between 1 and 2 L
## 1909                         Sometimes    no              More than 2 L
## 1910                         Sometimes    no          Between 1 and 2 L
## 1911                         Sometimes    no          Between 1 and 2 L
## 1912                         Sometimes    no              More than 2 L
## 1913                         Sometimes    no              More than 2 L
## 1914                         Sometimes    no              More than 2 L
## 1915                         Sometimes    no              More than 2 L
## 1916                         Sometimes    no              More than 2 L
## 1917                         Sometimes    no              More than 2 L
## 1918                         Sometimes    no          Between 1 and 2 L
## 1919                         Sometimes    no              More than 2 L
## 1920                         Sometimes    no          Less than a liter
## 1921                         Sometimes    no          Less than a liter
## 1922                         Sometimes    no          Between 1 and 2 L
## 1923                         Sometimes    no          Less than a liter
## 1924                         Sometimes    no              More than 2 L
## 1925                         Sometimes    no              More than 2 L
## 1926                         Sometimes    no          Between 1 and 2 L
## 1927                         Sometimes    no          Between 1 and 2 L
## 1928                         Sometimes    no              More than 2 L
## 1929                         Sometimes    no              More than 2 L
## 1930                         Sometimes    no          Between 1 and 2 L
## 1931                         Sometimes    no          Less than a liter
## 1932                         Sometimes    no          Between 1 and 2 L
## 1933                         Sometimes    no          Less than a liter
## 1934                         Sometimes    no          Between 1 and 2 L
## 1935                         Sometimes    no          Between 1 and 2 L
## 1936                         Sometimes    no          Less than a liter
## 1937                         Sometimes    no          Between 1 and 2 L
## 1938                         Sometimes    no          Less than a liter
## 1939                         Sometimes    no          Between 1 and 2 L
## 1940                         Sometimes    no              More than 2 L
## 1941                         Sometimes    no              More than 2 L
## 1942                         Sometimes    no              More than 2 L
## 1943                         Sometimes    no              More than 2 L
## 1944                         Sometimes    no          Less than a liter
## 1945                         Sometimes    no          Less than a liter
## 1946                         Sometimes    no          Between 1 and 2 L
## 1947                         Sometimes    no          Between 1 and 2 L
## 1948                         Sometimes    no          Between 1 and 2 L
## 1949                         Sometimes    no          Between 1 and 2 L
## 1950                         Sometimes    no          Between 1 and 2 L
## 1951                         Sometimes    no          Between 1 and 2 L
## 1952                         Sometimes    no              More than 2 L
## 1953                         Sometimes    no              More than 2 L
## 1954                         Sometimes    no              More than 2 L
## 1955                         Sometimes    no              More than 2 L
## 1956                         Sometimes    no              More than 2 L
## 1957                         Sometimes    no              More than 2 L
## 1958                         Sometimes    no              More than 2 L
## 1959                         Sometimes    no              More than 2 L
## 1960                         Sometimes    no          Between 1 and 2 L
## 1961                         Sometimes    no              More than 2 L
## 1962                         Sometimes    no              More than 2 L
## 1963                         Sometimes    no              More than 2 L
## 1964                         Sometimes    no          Between 1 and 2 L
## 1965                         Sometimes    no          Between 1 and 2 L
## 1966                         Sometimes    no              More than 2 L
## 1967                         Sometimes    no              More than 2 L
## 1968                         Sometimes    no          Less than a liter
## 1969                         Sometimes    no          Less than a liter
## 1970                         Sometimes    no          Less than a liter
## 1971                         Sometimes    no          Less than a liter
## 1972                         Sometimes    no              More than 2 L
## 1973                         Sometimes    no              More than 2 L
## 1974                         Sometimes    no          Between 1 and 2 L
## 1975                         Sometimes    no          Between 1 and 2 L
## 1976                         Sometimes    no              More than 2 L
## 1977                         Sometimes    no              More than 2 L
## 1978                         Sometimes    no              More than 2 L
## 1979                         Sometimes    no              More than 2 L
## 1980                         Sometimes    no          Between 1 and 2 L
## 1981                         Sometimes    no          Between 1 and 2 L
## 1982                         Sometimes    no          Less than a liter
## 1983                         Sometimes    no          Less than a liter
## 1984                         Sometimes    no          Less than a liter
## 1985                         Sometimes    no          Between 1 and 2 L
## 1986                         Sometimes    no          Less than a liter
## 1987                         Sometimes    no          Less than a liter
## 1988                         Sometimes    no              More than 2 L
## 1989                         Sometimes    no              More than 2 L
## 1990                         Sometimes    no              More than 2 L
## 1991                         Sometimes    no              More than 2 L
## 1992                         Sometimes    no          Less than a liter
## 1993                         Sometimes    no              More than 2 L
## 1994                         Sometimes    no              More than 2 L
## 1995                         Sometimes    no          Between 1 and 2 L
## 1996                         Sometimes    no              More than 2 L
## 1997                         Sometimes    no          Between 1 and 2 L
## 1998                         Sometimes    no          Between 1 and 2 L
## 1999                         Sometimes    no          Between 1 and 2 L
## 2000                         Sometimes    no              More than 2 L
## 2001                         Sometimes    no              More than 2 L
## 2002                         Sometimes    no              More than 2 L
## 2003                         Sometimes    no              More than 2 L
## 2004                         Sometimes    no              More than 2 L
## 2005                         Sometimes    no              More than 2 L
## 2006                         Sometimes    no              More than 2 L
## 2007                         Sometimes    no              More than 2 L
## 2008                         Sometimes    no              More than 2 L
## 2009                         Sometimes    no              More than 2 L
## 2010                         Sometimes    no          Less than a liter
## 2011                         Sometimes    no          Less than a liter
## 2012                         Sometimes    no              More than 2 L
## 2013                         Sometimes    no              More than 2 L
## 2014                         Sometimes    no              More than 2 L
## 2015                         Sometimes    no              More than 2 L
## 2016                         Sometimes    no          Less than a liter
## 2017                         Sometimes    no          Less than a liter
## 2018                         Sometimes    no          Less than a liter
## 2019                         Sometimes    no          Less than a liter
## 2020                         Sometimes    no          Between 1 and 2 L
## 2021                         Sometimes    no              More than 2 L
## 2022                         Sometimes    no          Less than a liter
## 2023                         Sometimes    no          Less than a liter
## 2024                         Sometimes    no              More than 2 L
## 2025                         Sometimes    no              More than 2 L
## 2026                         Sometimes    no              More than 2 L
## 2027                         Sometimes    no              More than 2 L
## 2028                         Sometimes    no          Between 1 and 2 L
## 2029                         Sometimes    no          Between 1 and 2 L
## 2030                         Sometimes    no          Between 1 and 2 L
## 2031                         Sometimes    no          Between 1 and 2 L
## 2032                         Sometimes    no              More than 2 L
## 2033                         Sometimes    no              More than 2 L
## 2034                         Sometimes    no              More than 2 L
## 2035                         Sometimes    no              More than 2 L
## 2036                         Sometimes    no              More than 2 L
## 2037                         Sometimes    no          Between 1 and 2 L
## 2038                         Sometimes    no              More than 2 L
## 2039                         Sometimes    no          Between 1 and 2 L
## 2040                         Sometimes    no          Between 1 and 2 L
## 2041                         Sometimes    no              More than 2 L
## 2042                         Sometimes    no          Less than a liter
## 2043                         Sometimes    no          Less than a liter
## 2044                         Sometimes    no          Between 1 and 2 L
## 2045                         Sometimes    no          Less than a liter
## 2046                         Sometimes    no          Between 1 and 2 L
## 2047                         Sometimes    no          Between 1 and 2 L
## 2048                         Sometimes    no          Less than a liter
## 2049                         Sometimes    no          Less than a liter
## 2050                         Sometimes    no          Less than a liter
## 2051                         Sometimes    no          Less than a liter
## 2052                         Sometimes    no          Between 1 and 2 L
## 2053                         Sometimes    no          Between 1 and 2 L
## 2054                         Sometimes    no          Between 1 and 2 L
## 2055                         Sometimes    no          Between 1 and 2 L
## 2056                         Sometimes    no          Between 1 and 2 L
## 2057                         Sometimes    no              More than 2 L
## 2058                         Sometimes    no              More than 2 L
## 2059                         Sometimes    no              More than 2 L
## 2060                         Sometimes    no          Between 1 and 2 L
## 2061                         Sometimes    no              More than 2 L
## 2062                         Sometimes    no          Between 1 and 2 L
## 2063                         Sometimes    no          Between 1 and 2 L
## 2064                         Sometimes    no          Between 1 and 2 L
## 2065                         Sometimes    no          Between 1 and 2 L
## 2066                         Sometimes    no          Between 1 and 2 L
## 2067                         Sometimes    no          Between 1 and 2 L
## 2068                         Sometimes    no          Between 1 and 2 L
## 2069                         Sometimes    no              More than 2 L
## 2070                         Sometimes    no              More than 2 L
## 2071                         Sometimes    no              More than 2 L
## 2072                         Sometimes    no          Between 1 and 2 L
## 2073                         Sometimes    no          Between 1 and 2 L
## 2074                         Sometimes    no          Between 1 and 2 L
## 2075                         Sometimes    no          Between 1 and 2 L
## 2076                         Sometimes    no          Between 1 and 2 L
## 2077                         Sometimes    no              More than 2 L
## 2078                         Sometimes    no          Between 1 and 2 L
## 2079                         Sometimes    no          Between 1 and 2 L
## 2080                         Sometimes    no              More than 2 L
## 2081                         Sometimes    no          Between 1 and 2 L
## 2082                         Sometimes    no              More than 2 L
## 2083                         Sometimes    no              More than 2 L
## 2084                         Sometimes    no              More than 2 L
## 2085                         Sometimes    no              More than 2 L
## 2086                         Sometimes    no              More than 2 L
## 2087                         Sometimes    no              More than 2 L
## 2088                         Sometimes    no              More than 2 L
## 2089                         Sometimes    no              More than 2 L
## 2090                         Sometimes    no              More than 2 L
## 2091                         Sometimes    no              More than 2 L
## 2092                         Sometimes    no              More than 2 L
## 2093                         Sometimes    no              More than 2 L
## 2094                         Sometimes    no              More than 2 L
## 2095                         Sometimes    no              More than 2 L
## 2096                         Sometimes    no          Between 1 and 2 L
## 2097                         Sometimes    no          Between 1 and 2 L
## 2098                         Sometimes    no          Between 1 and 2 L
## 2099                         Sometimes    no          Between 1 and 2 L
## 2100                         Sometimes    no          Between 1 and 2 L
## 2101                         Sometimes    no              More than 2 L
## 2102                         Sometimes    no          Between 1 and 2 L
## 2103                         Sometimes    no          Between 1 and 2 L
## 2104                         Sometimes    no          Between 1 and 2 L
## 2105                         Sometimes    no          Between 1 and 2 L
## 2106                         Sometimes    no          Between 1 and 2 L
## 2107                         Sometimes    no          Between 1 and 2 L
## 2108                         Sometimes    no          Between 1 and 2 L
## 2109                         Sometimes    no          Between 1 and 2 L
## 2110                         Sometimes    no              More than 2 L
## 2111                         Sometimes    no              More than 2 L
##      Calories_consumption_monitoring Physical_activity_frequency
## 1                                 no               I do not have
## 2                                yes           More than 4 times
## 3                                 no                 3 - 4 times
## 4                                 no                 3 - 4 times
## 5                                 no               I do not have
## 6                                 no               I do not have
## 7                                 no                 1 - 2 times
## 8                                 no           More than 4 times
## 9                                 no                 1 - 2 times
## 10                                no                 1 - 2 times
## 11                                no                 3 - 4 times
## 12                               yes                 3 - 4 times
## 13                                no                 3 - 4 times
## 14                                no                 3 - 4 times
## 15                                no                 1 - 2 times
## 16                               yes                 3 - 4 times
## 17                                no                 1 - 2 times
## 18                                no               I do not have
## 19                                no               I do not have
## 20                                no               I do not have
## 21                                no           More than 4 times
## 22                                no               I do not have
## 23                                no                 1 - 2 times
## 24                                no               I do not have
## 25                                no               I do not have
## 26                                no           More than 4 times
## 27                                no                 1 - 2 times
## 28                                no                 3 - 4 times
## 29                               yes           More than 4 times
## 30                                no                 3 - 4 times
## 31                                no               I do not have
## 32                                no                 1 - 2 times
## 33                                no                 1 - 2 times
## 34                                no               I do not have
## 35                                no                 3 - 4 times
## 36                                no                 3 - 4 times
## 37                               yes                 3 - 4 times
## 38                                no                 1 - 2 times
## 39                                no                 1 - 2 times
## 40                                no           More than 4 times
## 41                                no                 1 - 2 times
## 42                                no               I do not have
## 43                                no               I do not have
## 44                                no                 1 - 2 times
## 45                                no                 3 - 4 times
## 46                                no               I do not have
## 47                                no                 3 - 4 times
## 48                                no                 3 - 4 times
## 49                                no                 1 - 2 times
## 50                                no               I do not have
## 51                                no               I do not have
## 52                                no               I do not have
## 53                                no                 3 - 4 times
## 54                               yes                 3 - 4 times
## 55                                no                 3 - 4 times
## 56                                no               I do not have
## 57                                no               I do not have
## 58                                no               I do not have
## 59                                no                 1 - 2 times
## 60                                no                 3 - 4 times
## 61                                no           More than 4 times
## 62                                no           More than 4 times
## 63                                no               I do not have
## 64                                no               I do not have
## 65                                no                 1 - 2 times
## 66                                no               I do not have
## 67                                no               I do not have
## 68                                no               I do not have
## 69                               yes               I do not have
## 70                                no               I do not have
## 71                                no               I do not have
## 72                               yes                 3 - 4 times
## 73                               yes                 1 - 2 times
## 74                                no                 3 - 4 times
## 75                                no               I do not have
## 76                               yes                 3 - 4 times
## 77                                no                 1 - 2 times
## 78                                no               I do not have
## 79                                no               I do not have
## 80                                no               I do not have
## 81                               yes               I do not have
## 82                                no               I do not have
## 83                                no               I do not have
## 84                               yes                 3 - 4 times
## 85                                no               I do not have
## 86                                no               I do not have
## 87                                no                 1 - 2 times
## 88                                no               I do not have
## 89                               yes                 1 - 2 times
## 90                                no                 3 - 4 times
## 91                                no                 3 - 4 times
## 92                               yes               I do not have
## 93                               yes           More than 4 times
## 94                                no                 1 - 2 times
## 95                                no                 3 - 4 times
## 96                                no                 3 - 4 times
## 97                                no           More than 4 times
## 98                                no               I do not have
## 99                                no               I do not have
## 100                               no           More than 4 times
## 101                               no               I do not have
## 102                               no               I do not have
## 103                              yes                 3 - 4 times
## 104                               no                 1 - 2 times
## 105                               no               I do not have
## 106                               no                 3 - 4 times
## 107                               no                 3 - 4 times
## 108                               no               I do not have
## 109                               no           More than 4 times
## 110                               no                 3 - 4 times
## 111                               no               I do not have
## 112                               no               I do not have
## 113                               no                 1 - 2 times
## 114                               no           More than 4 times
## 115                               no                 1 - 2 times
## 116                               no               I do not have
## 117                               no           More than 4 times
## 118                               no                 1 - 2 times
## 119                               no                 1 - 2 times
## 120                               no                 3 - 4 times
## 121                               no               I do not have
## 122                               no               I do not have
## 123                               no                 1 - 2 times
## 124                               no                 1 - 2 times
## 125                               no               I do not have
## 126                               no               I do not have
## 127                               no                 1 - 2 times
## 128                              yes                 1 - 2 times
## 129                               no               I do not have
## 130                               no                 1 - 2 times
## 131                               no                 1 - 2 times
## 132                               no                 1 - 2 times
## 133                              yes                 1 - 2 times
## 134                               no                 1 - 2 times
## 135                               no                 3 - 4 times
## 136                               no                 1 - 2 times
## 137                               no                 1 - 2 times
## 138                               no               I do not have
## 139                              yes           More than 4 times
## 140                               no               I do not have
## 141                               no                 1 - 2 times
## 142                               no                 3 - 4 times
## 143                               no                 1 - 2 times
## 144                               no               I do not have
## 145                              yes                 3 - 4 times
## 146                               no                 1 - 2 times
## 147                               no                 3 - 4 times
## 148                               no               I do not have
## 149                               no               I do not have
## 150                               no                 3 - 4 times
## 151                               no                 3 - 4 times
## 152                               no                 3 - 4 times
## 153                               no               I do not have
## 154                               no                 3 - 4 times
## 155                               no               I do not have
## 156                               no                 1 - 2 times
## 157                               no               I do not have
## 158                               no                 3 - 4 times
## 159                               no               I do not have
## 160                               no               I do not have
## 161                               no                 3 - 4 times
## 162                               no                 1 - 2 times
## 163                               no                 3 - 4 times
## 164                              yes           More than 4 times
## 165                               no                 3 - 4 times
## 166                               no                 1 - 2 times
## 167                               no               I do not have
## 168                               no                 1 - 2 times
## 169                               no                 1 - 2 times
## 170                               no               I do not have
## 171                               no                 3 - 4 times
## 172                               no                 1 - 2 times
## 173                               no                 1 - 2 times
## 174                              yes               I do not have
## 175                               no                 1 - 2 times
## 176                               no                 3 - 4 times
## 177                               no                 1 - 2 times
## 178                              yes           More than 4 times
## 179                               no                 3 - 4 times
## 180                               no                 1 - 2 times
## 181                               no                 1 - 2 times
## 182                               no               I do not have
## 183                               no               I do not have
## 184                               no               I do not have
## 185                               no                 1 - 2 times
## 186                               no                 1 - 2 times
## 187                               no                 1 - 2 times
## 188                               no           More than 4 times
## 189                               no           More than 4 times
## 190                               no                 1 - 2 times
## 191                               no                 1 - 2 times
## 192                              yes                 3 - 4 times
## 193                              yes           More than 4 times
## 194                              yes                 3 - 4 times
## 195                               no           More than 4 times
## 196                               no                 1 - 2 times
## 197                               no                 1 - 2 times
## 198                               no               I do not have
## 199                               no               I do not have
## 200                               no                 1 - 2 times
## 201                               no                 1 - 2 times
## 202                               no               I do not have
## 203                               no               I do not have
## 204                               no                 1 - 2 times
## 205                               no           More than 4 times
## 206                               no                 1 - 2 times
## 207                               no                 3 - 4 times
## 208                              yes                 1 - 2 times
## 209                               no                 1 - 2 times
## 210                               no                 1 - 2 times
## 211                               no               I do not have
## 212                               no                 1 - 2 times
## 213                               no               I do not have
## 214                               no                 1 - 2 times
## 215                               no                 1 - 2 times
## 216                               no               I do not have
## 217                               no           More than 4 times
## 218                              yes           More than 4 times
## 219                               no           More than 4 times
## 220                               no                 1 - 2 times
## 221                              yes               I do not have
## 222                               no                 1 - 2 times
## 223                               no               I do not have
## 224                               no                 1 - 2 times
## 225                               no               I do not have
## 226                               no                 3 - 4 times
## 227                               no               I do not have
## 228                               no                 1 - 2 times
## 229                               no               I do not have
## 230                               no               I do not have
## 231                               no                 3 - 4 times
## 232                               no               I do not have
## 233                              yes                 3 - 4 times
## 234                               no                 1 - 2 times
## 235                               no                 3 - 4 times
## 236                               no                 3 - 4 times
## 237                              yes           More than 4 times
## 238                               no                 1 - 2 times
## 239                               no                 1 - 2 times
## 240                              yes           More than 4 times
## 241                               no                 1 - 2 times
## 242                               no           More than 4 times
## 243                               no               I do not have
## 244                               no                 1 - 2 times
## 245                              yes                 3 - 4 times
## 246                               no                 3 - 4 times
## 247                               no               I do not have
## 248                               no           More than 4 times
## 249                              yes           More than 4 times
## 250                               no           More than 4 times
## 251                               no                 1 - 2 times
## 252                               no               I do not have
## 253                               no                 1 - 2 times
## 254                               no               I do not have
## 255                               no               I do not have
## 256                               no           More than 4 times
## 257                               no                 1 - 2 times
## 258                              yes                 1 - 2 times
## 259                               no                 1 - 2 times
## 260                               no               I do not have
## 261                               no                 1 - 2 times
## 262                              yes                 3 - 4 times
## 263                               no                 1 - 2 times
## 264                               no           More than 4 times
## 265                              yes                 1 - 2 times
## 266                               no                 3 - 4 times
## 267                               no               I do not have
## 268                               no               I do not have
## 269                               no               I do not have
## 270                               no               I do not have
## 271                               no               I do not have
## 272                               no               I do not have
## 273                               no                 3 - 4 times
## 274                               no               I do not have
## 275                               no                 3 - 4 times
## 276                               no               I do not have
## 277                               no                 1 - 2 times
## 278                               no           More than 4 times
## 279                               no               I do not have
## 280                               no                 1 - 2 times
## 281                               no               I do not have
## 282                               no               I do not have
## 283                               no                 1 - 2 times
## 284                               no                 3 - 4 times
## 285                               no                 1 - 2 times
## 286                               no               I do not have
## 287                               no                 1 - 2 times
## 288                               no           More than 4 times
## 289                               no               I do not have
## 290                               no           More than 4 times
## 291                               no                 3 - 4 times
## 292                               no                 3 - 4 times
## 293                               no                 1 - 2 times
## 294                               no                 1 - 2 times
## 295                               no                 1 - 2 times
## 296                               no               I do not have
## 297                               no                 3 - 4 times
## 298                               no                 3 - 4 times
## 299                               no               I do not have
## 300                               no                 1 - 2 times
## 301                               no               I do not have
## 302                               no                 3 - 4 times
## 303                               no           More than 4 times
## 304                               no               I do not have
## 305                               no                 3 - 4 times
## 306                               no                 3 - 4 times
## 307                               no               I do not have
## 308                               no               I do not have
## 309                               no                 3 - 4 times
## 310                               no               I do not have
## 311                               no                 3 - 4 times
## 312                               no           More than 4 times
## 313                               no           More than 4 times
## 314                               no                 1 - 2 times
## 315                               no                 1 - 2 times
## 316                               no               I do not have
## 317                               no                 3 - 4 times
## 318                               no                 1 - 2 times
## 319                               no               I do not have
## 320                               no               I do not have
## 321                               no                 1 - 2 times
## 322                               no           More than 4 times
## 323                               no                 3 - 4 times
## 324                               no           More than 4 times
## 325                               no               I do not have
## 326                               no                 1 - 2 times
## 327                               no           More than 4 times
## 328                               no               I do not have
## 329                               no           More than 4 times
## 330                               no               I do not have
## 331                               no                 3 - 4 times
## 332                               no                 3 - 4 times
## 333                               no                 1 - 2 times
## 334                              yes           More than 4 times
## 335                              yes                 1 - 2 times
## 336                               no                 3 - 4 times
## 337                               no               I do not have
## 338                               no           More than 4 times
## 339                              yes                 1 - 2 times
## 340                              yes                 3 - 4 times
## 341                               no                 1 - 2 times
## 342                               no               I do not have
## 343                               no                 1 - 2 times
## 344                               no           More than 4 times
## 345                               no                 3 - 4 times
## 346                               no           More than 4 times
## 347                               no                 3 - 4 times
## 348                               no                 1 - 2 times
## 349                               no           More than 4 times
## 350                               no                 1 - 2 times
## 351                               no           More than 4 times
## 352                               no                 3 - 4 times
## 353                               no                 3 - 4 times
## 354                               no               I do not have
## 355                               no                 1 - 2 times
## 356                               no                 1 - 2 times
## 357                               no           More than 4 times
## 358                               no                 1 - 2 times
## 359                               no                 1 - 2 times
## 360                               no                 1 - 2 times
## 361                               no                 1 - 2 times
## 362                               no                 3 - 4 times
## 363                               no                 1 - 2 times
## 364                               no                 3 - 4 times
## 365                               no                 3 - 4 times
## 366                               no               I do not have
## 367                               no           More than 4 times
## 368                               no           More than 4 times
## 369                               no               I do not have
## 370                               no           More than 4 times
## 371                               no                 1 - 2 times
## 372                              yes                 1 - 2 times
## 373                               no               I do not have
## 374                               no               I do not have
## 375                               no                 3 - 4 times
## 376                               no                 1 - 2 times
## 377                               no                 3 - 4 times
## 378                               no                 1 - 2 times
## 379                               no                 3 - 4 times
## 380                               no               I do not have
## 381                              yes           More than 4 times
## 382                               no                 3 - 4 times
## 383                               no               I do not have
## 384                               no               I do not have
## 385                              yes               I do not have
## 386                               no                 1 - 2 times
## 387                               no                 1 - 2 times
## 388                               no               I do not have
## 389                               no                 1 - 2 times
## 390                               no               I do not have
## 391                               no               I do not have
## 392                               no               I do not have
## 393                               no                 3 - 4 times
## 394                               no               I do not have
## 395                               no               I do not have
## 396                               no           More than 4 times
## 397                               no                 3 - 4 times
## 398                               no               I do not have
## 399                               no               I do not have
## 400                               no               I do not have
## 401                               no               I do not have
## 402                               no                 1 - 2 times
## 403                               no                 3 - 4 times
## 404                               no               I do not have
## 405                               no           More than 4 times
## 406                               no           More than 4 times
## 407                               no           More than 4 times
## 408                               no                 1 - 2 times
## 409                               no               I do not have
## 410                               no                 3 - 4 times
## 411                               no                 1 - 2 times
## 412                              yes               I do not have
## 413                               no                 1 - 2 times
## 414                              yes                 1 - 2 times
## 415                               no                 1 - 2 times
## 416                               no                 3 - 4 times
## 417                              yes                 3 - 4 times
## 418                               no                 1 - 2 times
## 419                               no                 3 - 4 times
## 420                               no               I do not have
## 421                              yes                 3 - 4 times
## 422                              yes                 3 - 4 times
## 423                               no                 3 - 4 times
## 424                               no                 1 - 2 times
## 425                               no               I do not have
## 426                               no                 3 - 4 times
## 427                               no                 1 - 2 times
## 428                               no           More than 4 times
## 429                               no                 3 - 4 times
## 430                              yes                 1 - 2 times
## 431                               no                 1 - 2 times
## 432                               no                 3 - 4 times
## 433                               no                 3 - 4 times
## 434                               no                 1 - 2 times
## 435                               no           More than 4 times
## 436                               no           More than 4 times
## 437                               no               I do not have
## 438                               no                 1 - 2 times
## 439                               no                 3 - 4 times
## 440                               no               I do not have
## 441                               no               I do not have
## 442                               no                 1 - 2 times
## 443                               no               I do not have
## 444                               no               I do not have
## 445                               no                 3 - 4 times
## 446                               no           More than 4 times
## 447                               no                 3 - 4 times
## 448                               no                 3 - 4 times
## 449                               no               I do not have
## 450                               no                 3 - 4 times
## 451                               no                 1 - 2 times
## 452                               no                 1 - 2 times
## 453                               no                 3 - 4 times
## 454                               no               I do not have
## 455                               no                 1 - 2 times
## 456                               no                 1 - 2 times
## 457                               no               I do not have
## 458                               no               I do not have
## 459                               no                 1 - 2 times
## 460                               no                 1 - 2 times
## 461                               no                 1 - 2 times
## 462                               no               I do not have
## 463                               no               I do not have
## 464                               no                 3 - 4 times
## 465                               no                 3 - 4 times
## 466                               no                 1 - 2 times
## 467                               no                 1 - 2 times
## 468                               no                 1 - 2 times
## 469                               no                 1 - 2 times
## 470                               no               I do not have
## 471                               no           More than 4 times
## 472                              yes                 1 - 2 times
## 473                               no                 1 - 2 times
## 474                               no                 1 - 2 times
## 475                               no                 1 - 2 times
## 476                               no               I do not have
## 477                               no                 1 - 2 times
## 478                              yes                 1 - 2 times
## 479                               no                 1 - 2 times
## 480                               no                 1 - 2 times
## 481                               no               I do not have
## 482                              yes                 3 - 4 times
## 483                               no                 1 - 2 times
## 484                               no               I do not have
## 485                               no               I do not have
## 486                               no           More than 4 times
## 487                               no                 1 - 2 times
## 488                               no           More than 4 times
## 489                               no                 3 - 4 times
## 490                               no               I do not have
## 491                              yes                 1 - 2 times
## 492                               no                 1 - 2 times
## 493                               no               I do not have
## 494                               no                 3 - 4 times
## 495                               no               I do not have
## 496                              yes               I do not have
## 497                               no               I do not have
## 498                               no                 1 - 2 times
## 499                               no               I do not have
## 500                               no                 3 - 4 times
## 501                               no               I do not have
## 502                               no                 3 - 4 times
## 503                               no               I do not have
## 504                               no                 3 - 4 times
## 505                               no               I do not have
## 506                               no               I do not have
## 507                               no                 1 - 2 times
## 508                               no                 3 - 4 times
## 509                               no                 3 - 4 times
## 510                               no                 3 - 4 times
## 511                               no                 3 - 4 times
## 512                               no                 3 - 4 times
## 513                               no                 3 - 4 times
## 514                               no                 1 - 2 times
## 515                               no                 1 - 2 times
## 516                               no                 1 - 2 times
## 517                               no               I do not have
## 518                               no               I do not have
## 519                               no                 3 - 4 times
## 520                              yes           More than 4 times
## 521                              yes               I do not have
## 522                              yes                 3 - 4 times
## 523                               no               I do not have
## 524                               no               I do not have
## 525                               no                 1 - 2 times
## 526                               no               I do not have
## 527                               no               I do not have
## 528                               no               I do not have
## 529                               no               I do not have
## 530                               no                 1 - 2 times
## 531                               no                 1 - 2 times
## 532                               no                 1 - 2 times
## 533                               no                 1 - 2 times
## 534                               no                 3 - 4 times
## 535                               no                 1 - 2 times
## 536                               no                 1 - 2 times
## 537                               no                 1 - 2 times
## 538                               no               I do not have
## 539                               no               I do not have
## 540                               no               I do not have
## 541                               no                 3 - 4 times
## 542                               no                 3 - 4 times
## 543                               no                 1 - 2 times
## 544                               no                 3 - 4 times
## 545                               no           More than 4 times
## 546                               no                 1 - 2 times
## 547                               no                 3 - 4 times
## 548                               no                 3 - 4 times
## 549                               no                 3 - 4 times
## 550                               no                 1 - 2 times
## 551                               no                 1 - 2 times
## 552                               no               I do not have
## 553                               no               I do not have
## 554                               no                 3 - 4 times
## 555                               no                 1 - 2 times
## 556                               no                 1 - 2 times
## 557                               no                 1 - 2 times
## 558                               no               I do not have
## 559                               no                 3 - 4 times
## 560                               no                 3 - 4 times
## 561                               no                 3 - 4 times
## 562                               no           More than 4 times
## 563                               no                 3 - 4 times
## 564                               no                 3 - 4 times
## 565                               no                 3 - 4 times
## 566                               no                 3 - 4 times
## 567                               no                 3 - 4 times
## 568                               no               I do not have
## 569                               no                 3 - 4 times
## 570                               no                 3 - 4 times
## 571                               no                 3 - 4 times
## 572                               no                 3 - 4 times
## 573                               no                 3 - 4 times
## 574                               no                 1 - 2 times
## 575                               no                 3 - 4 times
## 576                               no                 3 - 4 times
## 577                               no                 3 - 4 times
## 578                               no                 1 - 2 times
## 579                               no               I do not have
## 580                               no           More than 4 times
## 581                               no                 3 - 4 times
## 582                               no                 3 - 4 times
## 583                               no                 1 - 2 times
## 584                               no                 1 - 2 times
## 585                               no                 3 - 4 times
## 586                               no               I do not have
## 587                               no               I do not have
## 588                               no                 1 - 2 times
## 589                               no                 1 - 2 times
## 590                               no                 3 - 4 times
## 591                               no               I do not have
## 592                               no                 3 - 4 times
## 593                               no                 3 - 4 times
## 594                               no                 3 - 4 times
## 595                               no                 3 - 4 times
## 596                               no                 3 - 4 times
## 597                               no                 3 - 4 times
## 598                               no               I do not have
## 599                               no               I do not have
## 600                               no                 1 - 2 times
## 601                              yes                 1 - 2 times
## 602                              yes                 3 - 4 times
## 603                              yes                 1 - 2 times
## 604                               no               I do not have
## 605                               no                 1 - 2 times
## 606                               no               I do not have
## 607                               no               I do not have
## 608                               no                 3 - 4 times
## 609                               no                 1 - 2 times
## 610                               no                 3 - 4 times
## 611                               no                 1 - 2 times
## 612                               no                 3 - 4 times
## 613                               no                 1 - 2 times
## 614                              yes                 1 - 2 times
## 615                               no               I do not have
## 616                               no               I do not have
## 617                               no                 3 - 4 times
## 618                               no                 3 - 4 times
## 619                               no               I do not have
## 620                               no               I do not have
## 621                               no                 3 - 4 times
## 622                               no                 3 - 4 times
## 623                               no                 1 - 2 times
## 624                               no               I do not have
## 625                               no                 1 - 2 times
## 626                               no                 1 - 2 times
## 627                               no                 3 - 4 times
## 628                               no           More than 4 times
## 629                               no                 3 - 4 times
## 630                               no                 3 - 4 times
## 631                               no                 3 - 4 times
## 632                               no                 3 - 4 times
## 633                              yes                 3 - 4 times
## 634                               no           More than 4 times
## 635                               no               I do not have
## 636                               no               I do not have
## 637                               no                 3 - 4 times
## 638                               no                 3 - 4 times
## 639                               no                 3 - 4 times
## 640                               no               I do not have
## 641                              yes                 1 - 2 times
## 642                               no               I do not have
## 643                               no               I do not have
## 644                               no                 3 - 4 times
## 645                               no                 3 - 4 times
## 646                               no                 3 - 4 times
## 647                               no                 3 - 4 times
## 648                               no                 3 - 4 times
## 649                               no                 1 - 2 times
## 650                               no                 1 - 2 times
## 651                               no                 3 - 4 times
## 652                               no                 1 - 2 times
## 653                               no               I do not have
## 654                               no               I do not have
## 655                               no                 1 - 2 times
## 656                              yes                 1 - 2 times
## 657                               no               I do not have
## 658                               no                 1 - 2 times
## 659                               no               I do not have
## 660                               no               I do not have
## 661                              yes                 1 - 2 times
## 662                               no               I do not have
## 663                               no               I do not have
## 664                               no               I do not have
## 665                               no               I do not have
## 666                               no                 1 - 2 times
## 667                               no                 3 - 4 times
## 668                               no                 3 - 4 times
## 669                               no                 1 - 2 times
## 670                               no                 3 - 4 times
## 671                               no                 1 - 2 times
## 672                               no                 3 - 4 times
## 673                               no                 1 - 2 times
## 674                               no               I do not have
## 675                               no               I do not have
## 676                               no               I do not have
## 677                               no                 3 - 4 times
## 678                               no                 3 - 4 times
## 679                               no                 3 - 4 times
## 680                               no                 1 - 2 times
## 681                               no                 3 - 4 times
## 682                               no               I do not have
## 683                               no                 3 - 4 times
## 684                               no                 3 - 4 times
## 685                               no                 3 - 4 times
## 686                               no                 1 - 2 times
## 687                               no                 3 - 4 times
## 688                               no               I do not have
## 689                               no               I do not have
## 690                               no                 1 - 2 times
## 691                               no                 1 - 2 times
## 692                               no                 1 - 2 times
## 693                               no                 1 - 2 times
## 694                               no                 1 - 2 times
## 695                               no                 3 - 4 times
## 696                               no                 3 - 4 times
## 697                               no                 3 - 4 times
## 698                              yes                 3 - 4 times
## 699                               no                 3 - 4 times
## 700                               no                 3 - 4 times
## 701                               no                 3 - 4 times
## 702                               no                 3 - 4 times
## 703                               no                 3 - 4 times
## 704                               no                 1 - 2 times
## 705                               no                 3 - 4 times
## 706                               no                 3 - 4 times
## 707                               no                 3 - 4 times
## 708                               no                 3 - 4 times
## 709                               no                 3 - 4 times
## 710                               no                 1 - 2 times
## 711                               no                 3 - 4 times
## 712                               no                 3 - 4 times
## 713                              yes                 1 - 2 times
## 714                               no               I do not have
## 715                               no               I do not have
## 716                               no           More than 4 times
## 717                               no                 3 - 4 times
## 718                               no                 3 - 4 times
## 719                               no                 1 - 2 times
## 720                               no                 1 - 2 times
## 721                               no                 3 - 4 times
## 722                               no               I do not have
## 723                               no               I do not have
## 724                               no               I do not have
## 725                               no               I do not have
## 726                               no                 3 - 4 times
## 727                               no               I do not have
## 728                               no                 3 - 4 times
## 729                               no                 3 - 4 times
## 730                               no                 3 - 4 times
## 731                               no                 3 - 4 times
## 732                               no                 3 - 4 times
## 733                               no                 3 - 4 times
## 734                               no                 1 - 2 times
## 735                               no               I do not have
## 736                               no                 1 - 2 times
## 737                              yes                 1 - 2 times
## 738                              yes                 1 - 2 times
## 739                              yes                 1 - 2 times
## 740                               no               I do not have
## 741                               no               I do not have
## 742                               no               I do not have
## 743                               no               I do not have
## 744                               no                 1 - 2 times
## 745                               no                 1 - 2 times
## 746                               no                 3 - 4 times
## 747                               no                 1 - 2 times
## 748                               no               I do not have
## 749                               no                 1 - 2 times
## 750                               no                 1 - 2 times
## 751                               no               I do not have
## 752                               no           More than 4 times
## 753                               no                 1 - 2 times
## 754                               no                 1 - 2 times
## 755                               no           More than 4 times
## 756                               no               I do not have
## 757                               no                 1 - 2 times
## 758                               no                 1 - 2 times
## 759                               no                 1 - 2 times
## 760                               no               I do not have
## 761                               no               I do not have
## 762                               no                 3 - 4 times
## 763                               no               I do not have
## 764                               no                 1 - 2 times
## 765                               no                 1 - 2 times
## 766                               no               I do not have
## 767                               no           More than 4 times
## 768                               no           More than 4 times
## 769                               no                 3 - 4 times
## 770                               no                 3 - 4 times
## 771                               no                 1 - 2 times
## 772                               no               I do not have
## 773                               no                 3 - 4 times
## 774                               no                 3 - 4 times
## 775                               no                 1 - 2 times
## 776                               no           More than 4 times
## 777                               no                 1 - 2 times
## 778                               no                 3 - 4 times
## 779                               no               I do not have
## 780                               no                 1 - 2 times
## 781                               no                 1 - 2 times
## 782                               no               I do not have
## 783                               no               I do not have
## 784                               no                 1 - 2 times
## 785                              yes               I do not have
## 786                              yes                 1 - 2 times
## 787                               no                 3 - 4 times
## 788                               no               I do not have
## 789                               no                 1 - 2 times
## 790                               no           More than 4 times
## 791                               no                 1 - 2 times
## 792                              yes                 1 - 2 times
## 793                               no               I do not have
## 794                              yes                 1 - 2 times
## 795                              yes               I do not have
## 796                               no                 3 - 4 times
## 797                               no               I do not have
## 798                               no               I do not have
## 799                               no                 3 - 4 times
## 800                               no                 3 - 4 times
## 801                               no               I do not have
## 802                               no                 1 - 2 times
## 803                              yes               I do not have
## 804                               no                 3 - 4 times
## 805                               no                 3 - 4 times
## 806                               no                 1 - 2 times
## 807                               no                 1 - 2 times
## 808                               no               I do not have
## 809                               no                 1 - 2 times
## 810                               no                 1 - 2 times
## 811                               no                 1 - 2 times
## 812                               no               I do not have
## 813                               no                 1 - 2 times
## 814                               no               I do not have
## 815                               no               I do not have
## 816                               no               I do not have
## 817                               no               I do not have
## 818                               no               I do not have
## 819                               no                 1 - 2 times
## 820                               no                 1 - 2 times
## 821                               no               I do not have
## 822                               no               I do not have
## 823                               no                 3 - 4 times
## 824                               no                 1 - 2 times
## 825                               no                 1 - 2 times
## 826                               no               I do not have
## 827                               no               I do not have
## 828                               no                 3 - 4 times
## 829                               no                 3 - 4 times
## 830                               no                 3 - 4 times
## 831                               no                 1 - 2 times
## 832                               no                 1 - 2 times
## 833                               no                 1 - 2 times
## 834                               no                 1 - 2 times
## 835                               no                 1 - 2 times
## 836                               no                 3 - 4 times
## 837                               no                 1 - 2 times
## 838                               no                 3 - 4 times
## 839                               no                 3 - 4 times
## 840                               no                 3 - 4 times
## 841                               no                 3 - 4 times
## 842                               no                 3 - 4 times
## 843                               no                 3 - 4 times
## 844                               no                 3 - 4 times
## 845                               no                 1 - 2 times
## 846                               no                 1 - 2 times
## 847                               no               I do not have
## 848                               no                 1 - 2 times
## 849                               no                 3 - 4 times
## 850                               no                 3 - 4 times
## 851                               no                 1 - 2 times
## 852                               no           More than 4 times
## 853                               no           More than 4 times
## 854                               no           More than 4 times
## 855                               no                 1 - 2 times
## 856                               no                 1 - 2 times
## 857                               no                 3 - 4 times
## 858                               no                 1 - 2 times
## 859                               no                 1 - 2 times
## 860                               no                 1 - 2 times
## 861                               no                 3 - 4 times
## 862                               no                 1 - 2 times
## 863                               no               I do not have
## 864                               no               I do not have
## 865                               no               I do not have
## 866                              yes               I do not have
## 867                              yes               I do not have
## 868                              yes                 1 - 2 times
## 869                               no                 1 - 2 times
## 870                               no                 1 - 2 times
## 871                               no                 1 - 2 times
## 872                               no                 1 - 2 times
## 873                               no                 1 - 2 times
## 874                               no                 1 - 2 times
## 875                               no                 1 - 2 times
## 876                              yes               I do not have
## 877                              yes               I do not have
## 878                               no               I do not have
## 879                               no                 1 - 2 times
## 880                              yes                 1 - 2 times
## 881                              yes                 1 - 2 times
## 882                              yes               I do not have
## 883                               no                 3 - 4 times
## 884                               no                 1 - 2 times
## 885                               no           More than 4 times
## 886                               no           More than 4 times
## 887                               no                 3 - 4 times
## 888                               no                 3 - 4 times
## 889                               no               I do not have
## 890                               no                 3 - 4 times
## 891                               no               I do not have
## 892                               no                 1 - 2 times
## 893                              yes               I do not have
## 894                               no                 3 - 4 times
## 895                               no                 3 - 4 times
## 896                               no                 1 - 2 times
## 897                               no                 1 - 2 times
## 898                               no                 1 - 2 times
## 899                               no                 1 - 2 times
## 900                               no                 1 - 2 times
## 901                               no                 1 - 2 times
## 902                               no                 3 - 4 times
## 903                               no           More than 4 times
## 904                               no               I do not have
## 905                               no                 1 - 2 times
## 906                               no                 1 - 2 times
## 907                               no                 1 - 2 times
## 908                               no           More than 4 times
## 909                               no               I do not have
## 910                               no               I do not have
## 911                               no               I do not have
## 912                               no                 1 - 2 times
## 913                               no                 1 - 2 times
## 914                               no                 1 - 2 times
## 915                               no                 1 - 2 times
## 916                               no               I do not have
## 917                               no               I do not have
## 918                               no               I do not have
## 919                               no                 1 - 2 times
## 920                               no                 3 - 4 times
## 921                               no                 1 - 2 times
## 922                               no                 1 - 2 times
## 923                               no                 1 - 2 times
## 924                               no                 1 - 2 times
## 925                               no               I do not have
## 926                               no               I do not have
## 927                               no           More than 4 times
## 928                               no           More than 4 times
## 929                               no                 3 - 4 times
## 930                               no                 3 - 4 times
## 931                               no                 1 - 2 times
## 932                               no                 1 - 2 times
## 933                               no                 1 - 2 times
## 934                               no               I do not have
## 935                               no                 3 - 4 times
## 936                               no                 1 - 2 times
## 937                               no                 3 - 4 times
## 938                               no                 1 - 2 times
## 939                               no                 1 - 2 times
## 940                               no           More than 4 times
## 941                               no                 1 - 2 times
## 942                               no                 1 - 2 times
## 943                               no                 3 - 4 times
## 944                               no                 1 - 2 times
## 945                               no                 1 - 2 times
## 946                               no                 1 - 2 times
## 947                               no                 1 - 2 times
## 948                               no                 1 - 2 times
## 949                               no               I do not have
## 950                               no                 1 - 2 times
## 951                               no               I do not have
## 952                              yes               I do not have
## 953                              yes               I do not have
## 954                              yes               I do not have
## 955                               no                 3 - 4 times
## 956                               no               I do not have
## 957                               no               I do not have
## 958                               no                 1 - 2 times
## 959                               no                 1 - 2 times
## 960                              yes                 1 - 2 times
## 961                              yes                 1 - 2 times
## 962                               no                 1 - 2 times
## 963                              yes                 1 - 2 times
## 964                              yes               I do not have
## 965                              yes                 1 - 2 times
## 966                              yes                 1 - 2 times
## 967                               no                 3 - 4 times
## 968                               no                 1 - 2 times
## 969                               no                 1 - 2 times
## 970                               no               I do not have
## 971                               no                 3 - 4 times
## 972                               no                 3 - 4 times
## 973                               no                 1 - 2 times
## 974                               no               I do not have
## 975                               no                 1 - 2 times
## 976                               no                 1 - 2 times
## 977                              yes               I do not have
## 978                               no                 1 - 2 times
## 979                               no                 1 - 2 times
## 980                               no                 3 - 4 times
## 981                               no                 3 - 4 times
## 982                               no                 1 - 2 times
## 983                               no               I do not have
## 984                               no               I do not have
## 985                               no           More than 4 times
## 986                               no               I do not have
## 987                               no                 3 - 4 times
## 988                               no                 1 - 2 times
## 989                               no                 1 - 2 times
## 990                               no                 3 - 4 times
## 991                               no               I do not have
## 992                               no                 3 - 4 times
## 993                               no                 1 - 2 times
## 994                               no               I do not have
## 995                               no               I do not have
## 996                               no               I do not have
## 997                               no                 1 - 2 times
## 998                               no                 1 - 2 times
## 999                               no               I do not have
## 1000                              no                 1 - 2 times
## 1001                              no                 1 - 2 times
## 1002                              no               I do not have
## 1003                              no               I do not have
## 1004                              no                 3 - 4 times
## 1005                              no                 1 - 2 times
## 1006                              no               I do not have
## 1007                              no                 3 - 4 times
## 1008                              no               I do not have
## 1009                              no               I do not have
## 1010                              no               I do not have
## 1011                              no                 1 - 2 times
## 1012                              no                 1 - 2 times
## 1013                              no               I do not have
## 1014                              no                 1 - 2 times
## 1015                              no                 3 - 4 times
## 1016                              no                 1 - 2 times
## 1017                              no                 1 - 2 times
## 1018                              no               I do not have
## 1019                              no           More than 4 times
## 1020                              no               I do not have
## 1021                              no                 1 - 2 times
## 1022                              no               I do not have
## 1023                              no                 1 - 2 times
## 1024                              no               I do not have
## 1025                              no                 1 - 2 times
## 1026                              no               I do not have
## 1027                              no               I do not have
## 1028                              no                 3 - 4 times
## 1029                              no                 1 - 2 times
## 1030                              no                 1 - 2 times
## 1031                              no                 1 - 2 times
## 1032                              no                 1 - 2 times
## 1033                              no                 1 - 2 times
## 1034                              no               I do not have
## 1035                              no                 1 - 2 times
## 1036                              no                 1 - 2 times
## 1037                              no                 1 - 2 times
## 1038                              no                 3 - 4 times
## 1039                              no               I do not have
## 1040                              no                 1 - 2 times
## 1041                              no                 3 - 4 times
## 1042                              no           More than 4 times
## 1043                              no                 1 - 2 times
## 1044                              no                 3 - 4 times
## 1045                              no                 3 - 4 times
## 1046                              no                 1 - 2 times
## 1047                              no                 3 - 4 times
## 1048                              no                 3 - 4 times
## 1049                              no                 3 - 4 times
## 1050                              no                 3 - 4 times
## 1051                              no                 3 - 4 times
## 1052                              no                 3 - 4 times
## 1053                              no                 1 - 2 times
## 1054                              no                 1 - 2 times
## 1055                              no                 1 - 2 times
## 1056                              no                 1 - 2 times
## 1057                              no               I do not have
## 1058                              no               I do not have
## 1059                              no                 1 - 2 times
## 1060                              no               I do not have
## 1061                              no                 1 - 2 times
## 1062                              no                 1 - 2 times
## 1063                              no                 1 - 2 times
## 1064                              no               I do not have
## 1065                              no               I do not have
## 1066                              no           More than 4 times
## 1067                              no                 1 - 2 times
## 1068                              no               I do not have
## 1069                              no           More than 4 times
## 1070                              no                 1 - 2 times
## 1071                              no               I do not have
## 1072                              no                 1 - 2 times
## 1073                              no           More than 4 times
## 1074                              no                 3 - 4 times
## 1075                              no               I do not have
## 1076                              no               I do not have
## 1077                              no               I do not have
## 1078                              no               I do not have
## 1079                              no               I do not have
## 1080                              no               I do not have
## 1081                              no                 3 - 4 times
## 1082                              no                 1 - 2 times
## 1083                              no                 3 - 4 times
## 1084                              no                 1 - 2 times
## 1085                              no               I do not have
## 1086                              no                 1 - 2 times
## 1087                              no                 3 - 4 times
## 1088                              no                 1 - 2 times
## 1089                              no                 1 - 2 times
## 1090                              no                 3 - 4 times
## 1091                              no                 3 - 4 times
## 1092                              no               I do not have
## 1093                              no                 1 - 2 times
## 1094                              no               I do not have
## 1095                              no               I do not have
## 1096                              no                 1 - 2 times
## 1097                              no               I do not have
## 1098                              no                 1 - 2 times
## 1099                              no                 1 - 2 times
## 1100                              no                 1 - 2 times
## 1101                              no               I do not have
## 1102                              no                 1 - 2 times
## 1103                              no                 1 - 2 times
## 1104                              no               I do not have
## 1105                              no               I do not have
## 1106                              no                 3 - 4 times
## 1107                              no                 3 - 4 times
## 1108                              no               I do not have
## 1109                              no           More than 4 times
## 1110                              no                 1 - 2 times
## 1111                              no                 1 - 2 times
## 1112                              no               I do not have
## 1113                              no                 3 - 4 times
## 1114                              no                 3 - 4 times
## 1115                              no                 1 - 2 times
## 1116                              no                 1 - 2 times
## 1117                              no               I do not have
## 1118                              no               I do not have
## 1119                              no                 1 - 2 times
## 1120                              no                 1 - 2 times
## 1121                              no               I do not have
## 1122                              no                 1 - 2 times
## 1123                              no               I do not have
## 1124                              no                 1 - 2 times
## 1125                              no           More than 4 times
## 1126                              no           More than 4 times
## 1127                              no                 1 - 2 times
## 1128                              no               I do not have
## 1129                              no                 1 - 2 times
## 1130                              no                 3 - 4 times
## 1131                              no               I do not have
## 1132                              no                 1 - 2 times
## 1133                              no                 1 - 2 times
## 1134                              no                 1 - 2 times
## 1135                              no                 3 - 4 times
## 1136                              no               I do not have
## 1137                              no                 3 - 4 times
## 1138                              no                 1 - 2 times
## 1139                              no                 3 - 4 times
## 1140                              no               I do not have
## 1141                              no               I do not have
## 1142                              no               I do not have
## 1143                              no                 1 - 2 times
## 1144                              no               I do not have
## 1145                              no                 1 - 2 times
## 1146                              no                 1 - 2 times
## 1147                              no               I do not have
## 1148                              no                 1 - 2 times
## 1149                              no                 1 - 2 times
## 1150                              no                 1 - 2 times
## 1151                              no               I do not have
## 1152                              no                 1 - 2 times
## 1153                              no               I do not have
## 1154                              no               I do not have
## 1155                              no               I do not have
## 1156                              no                 1 - 2 times
## 1157                              no                 1 - 2 times
## 1158                              no               I do not have
## 1159                              no                 1 - 2 times
## 1160                              no                 3 - 4 times
## 1161                              no                 1 - 2 times
## 1162                              no                 1 - 2 times
## 1163                              no               I do not have
## 1164                              no           More than 4 times
## 1165                              no               I do not have
## 1166                              no                 1 - 2 times
## 1167                              no               I do not have
## 1168                              no                 1 - 2 times
## 1169                              no               I do not have
## 1170                              no                 1 - 2 times
## 1171                              no               I do not have
## 1172                              no               I do not have
## 1173                              no                 1 - 2 times
## 1174                              no               I do not have
## 1175                              no                 1 - 2 times
## 1176                              no                 1 - 2 times
## 1177                              no                 3 - 4 times
## 1178                              no                 1 - 2 times
## 1179                              no                 1 - 2 times
## 1180                              no               I do not have
## 1181                              no                 1 - 2 times
## 1182                              no                 1 - 2 times
## 1183                              no                 3 - 4 times
## 1184                              no                 3 - 4 times
## 1185                              no                 1 - 2 times
## 1186                              no           More than 4 times
## 1187                              no           More than 4 times
## 1188                              no                 1 - 2 times
## 1189                              no                 3 - 4 times
## 1190                              no                 3 - 4 times
## 1191                              no                 1 - 2 times
## 1192                              no                 3 - 4 times
## 1193                              no                 1 - 2 times
## 1194                              no                 1 - 2 times
## 1195                              no                 1 - 2 times
## 1196                              no                 3 - 4 times
## 1197                              no                 3 - 4 times
## 1198                              no                 1 - 2 times
## 1199                              no                 1 - 2 times
## 1200                              no                 1 - 2 times
## 1201                              no                 1 - 2 times
## 1202                              no               I do not have
## 1203                              no                 1 - 2 times
## 1204                              no                 1 - 2 times
## 1205                              no               I do not have
## 1206                              no                 1 - 2 times
## 1207                              no                 1 - 2 times
## 1208                              no                 1 - 2 times
## 1209                              no                 1 - 2 times
## 1210                              no                 3 - 4 times
## 1211                              no                 3 - 4 times
## 1212                              no                 3 - 4 times
## 1213                              no           More than 4 times
## 1214                              no               I do not have
## 1215                              no               I do not have
## 1216                              no                 1 - 2 times
## 1217                              no               I do not have
## 1218                              no               I do not have
## 1219                              no               I do not have
## 1220                              no                 1 - 2 times
## 1221                              no                 1 - 2 times
## 1222                              no               I do not have
## 1223                              no                 3 - 4 times
## 1224                              no               I do not have
## 1225                              no           More than 4 times
## 1226                              no           More than 4 times
## 1227                              no                 1 - 2 times
## 1228                              no                 1 - 2 times
## 1229                              no                 3 - 4 times
## 1230                              no               I do not have
## 1231                              no                 1 - 2 times
## 1232                              no                 3 - 4 times
## 1233                              no                 3 - 4 times
## 1234                              no               I do not have
## 1235                              no                 3 - 4 times
## 1236                              no           More than 4 times
## 1237                              no           More than 4 times
## 1238                              no                 3 - 4 times
## 1239                              no                 3 - 4 times
## 1240                              no                 3 - 4 times
## 1241                              no               I do not have
## 1242                              no                 3 - 4 times
## 1243                              no               I do not have
## 1244                              no                 1 - 2 times
## 1245                              no                 1 - 2 times
## 1246                              no                 1 - 2 times
## 1247                              no                 3 - 4 times
## 1248                              no               I do not have
## 1249                              no               I do not have
## 1250                              no                 1 - 2 times
## 1251                              no                 1 - 2 times
## 1252                              no                 1 - 2 times
## 1253                              no               I do not have
## 1254                              no                 1 - 2 times
## 1255                              no               I do not have
## 1256                              no               I do not have
## 1257                              no                 1 - 2 times
## 1258                              no                 1 - 2 times
## 1259                              no               I do not have
## 1260                              no               I do not have
## 1261                              no                 1 - 2 times
## 1262                              no                 1 - 2 times
## 1263                              no                 1 - 2 times
## 1264                              no                 3 - 4 times
## 1265                              no                 3 - 4 times
## 1266                              no               I do not have
## 1267                              no               I do not have
## 1268                              no               I do not have
## 1269                              no                 1 - 2 times
## 1270                              no                 1 - 2 times
## 1271                              no                 1 - 2 times
## 1272                              no                 1 - 2 times
## 1273                              no               I do not have
## 1274                              no               I do not have
## 1275                              no                 1 - 2 times
## 1276                              no               I do not have
## 1277                              no               I do not have
## 1278                              no               I do not have
## 1279                              no                 3 - 4 times
## 1280                              no                 3 - 4 times
## 1281                              no                 3 - 4 times
## 1282                              no                 3 - 4 times
## 1283                              no                 3 - 4 times
## 1284                              no               I do not have
## 1285                              no               I do not have
## 1286                              no               I do not have
## 1287                              no               I do not have
## 1288                              no               I do not have
## 1289                              no               I do not have
## 1290                              no                 1 - 2 times
## 1291                              no                 3 - 4 times
## 1292                              no                 1 - 2 times
## 1293                              no                 1 - 2 times
## 1294                              no               I do not have
## 1295                              no                 1 - 2 times
## 1296                              no               I do not have
## 1297                              no                 1 - 2 times
## 1298                              no           More than 4 times
## 1299                              no           More than 4 times
## 1300                              no                 1 - 2 times
## 1301                              no                 1 - 2 times
## 1302                              no                 3 - 4 times
## 1303                              no                 3 - 4 times
## 1304                              no                 3 - 4 times
## 1305                              no                 3 - 4 times
## 1306                              no               I do not have
## 1307                              no               I do not have
## 1308                              no               I do not have
## 1309                              no                 1 - 2 times
## 1310                              no               I do not have
## 1311                              no               I do not have
## 1312                              no                 3 - 4 times
## 1313                              no                 1 - 2 times
## 1314                              no               I do not have
## 1315                              no               I do not have
## 1316                              no                 1 - 2 times
## 1317                              no                 1 - 2 times
## 1318                              no                 3 - 4 times
## 1319                              no                 3 - 4 times
## 1320                              no           More than 4 times
## 1321                              no                 1 - 2 times
## 1322                              no                 3 - 4 times
## 1323                              no                 1 - 2 times
## 1324                              no                 1 - 2 times
## 1325                              no               I do not have
## 1326                              no               I do not have
## 1327                              no               I do not have
## 1328                              no                 1 - 2 times
## 1329                              no                 1 - 2 times
## 1330                              no                 1 - 2 times
## 1331                              no                 1 - 2 times
## 1332                              no               I do not have
## 1333                              no                 3 - 4 times
## 1334                              no               I do not have
## 1335                              no               I do not have
## 1336                              no                 1 - 2 times
## 1337                              no                 1 - 2 times
## 1338                              no               I do not have
## 1339                              no               I do not have
## 1340                              no               I do not have
## 1341                              no               I do not have
## 1342                              no               I do not have
## 1343                              no               I do not have
## 1344                              no                 1 - 2 times
## 1345                              no                 1 - 2 times
## 1346                              no               I do not have
## 1347                              no                 1 - 2 times
## 1348                              no                 1 - 2 times
## 1349                              no                 1 - 2 times
## 1350                              no                 1 - 2 times
## 1351                              no                 1 - 2 times
## 1352                              no                 3 - 4 times
## 1353                              no                 3 - 4 times
## 1354                              no               I do not have
## 1355                              no                 3 - 4 times
## 1356                              no               I do not have
## 1357                              no               I do not have
## 1358                              no                 1 - 2 times
## 1359                              no                 1 - 2 times
## 1360                              no                 1 - 2 times
## 1361                              no                 3 - 4 times
## 1362                              no                 1 - 2 times
## 1363                              no                 1 - 2 times
## 1364                              no                 1 - 2 times
## 1365                              no               I do not have
## 1366                              no                 1 - 2 times
## 1367                              no                 1 - 2 times
## 1368                              no               I do not have
## 1369                              no               I do not have
## 1370                              no                 1 - 2 times
## 1371                              no                 1 - 2 times
## 1372                              no                 3 - 4 times
## 1373                              no           More than 4 times
## 1374                              no                 3 - 4 times
## 1375                              no                 3 - 4 times
## 1376                              no                 3 - 4 times
## 1377                              no                 1 - 2 times
## 1378                              no                 3 - 4 times
## 1379                              no                 3 - 4 times
## 1380                              no           More than 4 times
## 1381                              no                 3 - 4 times
## 1382                              no               I do not have
## 1383                              no               I do not have
## 1384                              no               I do not have
## 1385                              no               I do not have
## 1386                              no                 1 - 2 times
## 1387                              no               I do not have
## 1388                              no                 1 - 2 times
## 1389                              no               I do not have
## 1390                              no               I do not have
## 1391                              no               I do not have
## 1392                              no                 1 - 2 times
## 1393                              no               I do not have
## 1394                              no                 3 - 4 times
## 1395                              no                 3 - 4 times
## 1396                              no                 1 - 2 times
## 1397                              no                 3 - 4 times
## 1398                              no               I do not have
## 1399                              no               I do not have
## 1400                              no                 3 - 4 times
## 1401                              no                 1 - 2 times
## 1402                              no               I do not have
## 1403                              no                 1 - 2 times
## 1404                              no                 1 - 2 times
## 1405                              no                 3 - 4 times
## 1406                              no           More than 4 times
## 1407                              no           More than 4 times
## 1408                              no                 1 - 2 times
## 1409                              no                 1 - 2 times
## 1410                              no                 1 - 2 times
## 1411                              no               I do not have
## 1412                              no                 3 - 4 times
## 1413                              no               I do not have
## 1414                              no               I do not have
## 1415                              no               I do not have
## 1416                              no                 1 - 2 times
## 1417                              no                 1 - 2 times
## 1418                              no                 3 - 4 times
## 1419                              no               I do not have
## 1420                              no                 3 - 4 times
## 1421                              no                 3 - 4 times
## 1422                              no               I do not have
## 1423                              no               I do not have
## 1424                              no           More than 4 times
## 1425                              no           More than 4 times
## 1426                              no           More than 4 times
## 1427                              no           More than 4 times
## 1428                              no           More than 4 times
## 1429                              no                 3 - 4 times
## 1430                              no                 3 - 4 times
## 1431                              no                 3 - 4 times
## 1432                              no                 3 - 4 times
## 1433                              no                 3 - 4 times
## 1434                              no                 3 - 4 times
## 1435                              no                 3 - 4 times
## 1436                              no               I do not have
## 1437                              no               I do not have
## 1438                              no                 3 - 4 times
## 1439                              no                 3 - 4 times
## 1440                              no               I do not have
## 1441                              no               I do not have
## 1442                              no               I do not have
## 1443                              no                 1 - 2 times
## 1444                              no               I do not have
## 1445                              no               I do not have
## 1446                              no                 1 - 2 times
## 1447                              no                 1 - 2 times
## 1448                              no           More than 4 times
## 1449                              no           More than 4 times
## 1450                              no               I do not have
## 1451                              no               I do not have
## 1452                              no               I do not have
## 1453                              no               I do not have
## 1454                              no                 1 - 2 times
## 1455                              no                 1 - 2 times
## 1456                              no                 3 - 4 times
## 1457                              no                 1 - 2 times
## 1458                              no                 1 - 2 times
## 1459                              no                 1 - 2 times
## 1460                              no                 1 - 2 times
## 1461                              no                 1 - 2 times
## 1462                              no                 1 - 2 times
## 1463                              no                 1 - 2 times
## 1464                              no               I do not have
## 1465                              no                 1 - 2 times
## 1466                              no               I do not have
## 1467                              no               I do not have
## 1468                              no                 1 - 2 times
## 1469                              no                 1 - 2 times
## 1470                              no                 1 - 2 times
## 1471                              no                 1 - 2 times
## 1472                              no               I do not have
## 1473                              no                 1 - 2 times
## 1474                              no               I do not have
## 1475                              no               I do not have
## 1476                              no                 1 - 2 times
## 1477                              no                 1 - 2 times
## 1478                              no                 1 - 2 times
## 1479                              no                 1 - 2 times
## 1480                              no                 1 - 2 times
## 1481                              no                 1 - 2 times
## 1482                              no                 3 - 4 times
## 1483                              no                 3 - 4 times
## 1484                              no               I do not have
## 1485                              no                 1 - 2 times
## 1486                              no               I do not have
## 1487                              no               I do not have
## 1488                              no               I do not have
## 1489                              no               I do not have
## 1490                              no               I do not have
## 1491                              no               I do not have
## 1492                              no                 1 - 2 times
## 1493                              no                 1 - 2 times
## 1494                              no                 1 - 2 times
## 1495                              no                 1 - 2 times
## 1496                              no                 1 - 2 times
## 1497                              no                 1 - 2 times
## 1498                              no                 1 - 2 times
## 1499                              no                 1 - 2 times
## 1500                              no               I do not have
## 1501                              no               I do not have
## 1502                              no               I do not have
## 1503                              no                 1 - 2 times
## 1504                              no                 1 - 2 times
## 1505                              no                 1 - 2 times
## 1506                              no                 1 - 2 times
## 1507                              no               I do not have
## 1508                              no               I do not have
## 1509                              no               I do not have
## 1510                              no               I do not have
## 1511                              no               I do not have
## 1512                              no                 3 - 4 times
## 1513                              no                 3 - 4 times
## 1514                              no               I do not have
## 1515                              no                 3 - 4 times
## 1516                              no                 3 - 4 times
## 1517                              no                 3 - 4 times
## 1518                              no                 3 - 4 times
## 1519                              no                 1 - 2 times
## 1520                              no                 1 - 2 times
## 1521                              no                 1 - 2 times
## 1522                              no               I do not have
## 1523                              no               I do not have
## 1524                              no                 1 - 2 times
## 1525                              no                 1 - 2 times
## 1526                              no                 1 - 2 times
## 1527                              no                 1 - 2 times
## 1528                              no                 3 - 4 times
## 1529                              no                 1 - 2 times
## 1530                              no               I do not have
## 1531                              no               I do not have
## 1532                              no                 1 - 2 times
## 1533                              no                 1 - 2 times
## 1534                              no                 3 - 4 times
## 1535                              no               I do not have
## 1536                              no               I do not have
## 1537                              no                 1 - 2 times
## 1538                              no                 3 - 4 times
## 1539                              no                 3 - 4 times
## 1540                              no                 1 - 2 times
## 1541                              no                 1 - 2 times
## 1542                              no               I do not have
## 1543                              no                 1 - 2 times
## 1544                              no                 1 - 2 times
## 1545                              no                 1 - 2 times
## 1546                              no                 3 - 4 times
## 1547                              no                 1 - 2 times
## 1548                              no               I do not have
## 1549                              no                 1 - 2 times
## 1550                              no                 3 - 4 times
## 1551                              no                 3 - 4 times
## 1552                              no                 3 - 4 times
## 1553                              no                 3 - 4 times
## 1554                              no               I do not have
## 1555                              no               I do not have
## 1556                              no                 1 - 2 times
## 1557                              no               I do not have
## 1558                              no               I do not have
## 1559                              no               I do not have
## 1560                              no                 1 - 2 times
## 1561                              no                 3 - 4 times
## 1562                              no                 1 - 2 times
## 1563                              no                 1 - 2 times
## 1564                              no                 3 - 4 times
## 1565                              no               I do not have
## 1566                              no                 3 - 4 times
## 1567                              no                 1 - 2 times
## 1568                              no                 1 - 2 times
## 1569                              no               I do not have
## 1570                              no                 1 - 2 times
## 1571                              no                 1 - 2 times
## 1572                              no                 1 - 2 times
## 1573                              no                 1 - 2 times
## 1574                              no                 1 - 2 times
## 1575                              no                 1 - 2 times
## 1576                              no               I do not have
## 1577                              no               I do not have
## 1578                              no                 1 - 2 times
## 1579                              no                 1 - 2 times
## 1580                              no                 1 - 2 times
## 1581                              no                 3 - 4 times
## 1582                              no                 1 - 2 times
## 1583                              no                 1 - 2 times
## 1584                              no                 1 - 2 times
## 1585                              no                 1 - 2 times
## 1586                              no                 3 - 4 times
## 1587                              no                 1 - 2 times
## 1588                              no                 1 - 2 times
## 1589                              no                 1 - 2 times
## 1590                              no                 1 - 2 times
## 1591                              no                 1 - 2 times
## 1592                              no               I do not have
## 1593                              no                 3 - 4 times
## 1594                              no                 1 - 2 times
## 1595                              no                 1 - 2 times
## 1596                              no                 1 - 2 times
## 1597                              no                 3 - 4 times
## 1598                              no               I do not have
## 1599                              no                 3 - 4 times
## 1600                              no               I do not have
## 1601                              no               I do not have
## 1602                              no               I do not have
## 1603                              no               I do not have
## 1604                              no                 3 - 4 times
## 1605                              no                 3 - 4 times
## 1606                              no                 1 - 2 times
## 1607                              no                 1 - 2 times
## 1608                              no               I do not have
## 1609                              no               I do not have
## 1610                              no                 1 - 2 times
## 1611                              no                 3 - 4 times
## 1612                              no                 3 - 4 times
## 1613                              no                 3 - 4 times
## 1614                              no                 1 - 2 times
## 1615                              no                 1 - 2 times
## 1616                              no                 3 - 4 times
## 1617                              no                 3 - 4 times
## 1618                              no                 1 - 2 times
## 1619                              no                 1 - 2 times
## 1620                              no               I do not have
## 1621                              no               I do not have
## 1622                              no               I do not have
## 1623                              no                 1 - 2 times
## 1624                              no               I do not have
## 1625                              no               I do not have
## 1626                              no                 1 - 2 times
## 1627                              no                 3 - 4 times
## 1628                              no                 1 - 2 times
## 1629                              no                 3 - 4 times
## 1630                              no                 3 - 4 times
## 1631                              no                 1 - 2 times
## 1632                              no                 3 - 4 times
## 1633                              no                 1 - 2 times
## 1634                              no                 1 - 2 times
## 1635                              no                 1 - 2 times
## 1636                              no                 1 - 2 times
## 1637                              no                 1 - 2 times
## 1638                              no                 1 - 2 times
## 1639                              no                 1 - 2 times
## 1640                              no                 1 - 2 times
## 1641                              no                 1 - 2 times
## 1642                              no               I do not have
## 1643                              no               I do not have
## 1644                              no                 1 - 2 times
## 1645                              no                 1 - 2 times
## 1646                              no                 1 - 2 times
## 1647                              no                 3 - 4 times
## 1648                              no                 1 - 2 times
## 1649                              no                 1 - 2 times
## 1650                              no                 1 - 2 times
## 1651                              no                 1 - 2 times
## 1652                              no                 1 - 2 times
## 1653                              no                 3 - 4 times
## 1654                              no                 1 - 2 times
## 1655                              no                 1 - 2 times
## 1656                              no               I do not have
## 1657                              no                 1 - 2 times
## 1658                              no               I do not have
## 1659                              no                 1 - 2 times
## 1660                              no                 1 - 2 times
## 1661                              no                 1 - 2 times
## 1662                              no                 1 - 2 times
## 1663                              no                 1 - 2 times
## 1664                              no                 3 - 4 times
## 1665                              no                 1 - 2 times
## 1666                              no               I do not have
## 1667                              no               I do not have
## 1668                              no               I do not have
## 1669                              no               I do not have
## 1670                              no                 1 - 2 times
## 1671                              no                 1 - 2 times
## 1672                              no                 3 - 4 times
## 1673                              no                 3 - 4 times
## 1674                              no                 3 - 4 times
## 1675                              no                 1 - 2 times
## 1676                              no                 1 - 2 times
## 1677                              no                 1 - 2 times
## 1678                              no                 1 - 2 times
## 1679                              no                 1 - 2 times
## 1680                              no               I do not have
## 1681                              no               I do not have
## 1682                              no                 1 - 2 times
## 1683                              no                 1 - 2 times
## 1684                              no                 3 - 4 times
## 1685                              no                 1 - 2 times
## 1686                              no                 1 - 2 times
## 1687                              no                 1 - 2 times
## 1688                              no                 3 - 4 times
## 1689                              no                 3 - 4 times
## 1690                              no                 3 - 4 times
## 1691                              no                 1 - 2 times
## 1692                              no               I do not have
## 1693                              no               I do not have
## 1694                              no               I do not have
## 1695                              no                 1 - 2 times
## 1696                              no                 1 - 2 times
## 1697                              no                 3 - 4 times
## 1698                              no                 3 - 4 times
## 1699                              no                 3 - 4 times
## 1700                              no                 3 - 4 times
## 1701                              no                 3 - 4 times
## 1702                              no                 3 - 4 times
## 1703                              no                 1 - 2 times
## 1704                              no                 1 - 2 times
## 1705                              no               I do not have
## 1706                              no                 1 - 2 times
## 1707                              no                 1 - 2 times
## 1708                              no                 1 - 2 times
## 1709                              no               I do not have
## 1710                              no               I do not have
## 1711                              no                 1 - 2 times
## 1712                              no               I do not have
## 1713                              no               I do not have
## 1714                              no               I do not have
## 1715                              no                 1 - 2 times
## 1716                              no                 1 - 2 times
## 1717                              no                 1 - 2 times
## 1718                              no                 3 - 4 times
## 1719                              no                 1 - 2 times
## 1720                              no               I do not have
## 1721                              no               I do not have
## 1722                              no                 1 - 2 times
## 1723                              no                 1 - 2 times
## 1724                              no                 3 - 4 times
## 1725                              no                 3 - 4 times
## 1726                              no                 1 - 2 times
## 1727                              no               I do not have
## 1728                              no                 1 - 2 times
## 1729                              no                 1 - 2 times
## 1730                              no                 3 - 4 times
## 1731                              no                 1 - 2 times
## 1732                              no                 1 - 2 times
## 1733                              no                 1 - 2 times
## 1734                              no                 1 - 2 times
## 1735                              no                 1 - 2 times
## 1736                              no                 1 - 2 times
## 1737                              no                 1 - 2 times
## 1738                              no                 1 - 2 times
## 1739                              no                 1 - 2 times
## 1740                              no               I do not have
## 1741                              no                 1 - 2 times
## 1742                              no                 1 - 2 times
## 1743                              no                 1 - 2 times
## 1744                              no                 1 - 2 times
## 1745                              no                 1 - 2 times
## 1746                              no                 1 - 2 times
## 1747                              no                 1 - 2 times
## 1748                              no               I do not have
## 1749                              no               I do not have
## 1750                              no                 1 - 2 times
## 1751                              no               I do not have
## 1752                              no                 1 - 2 times
## 1753                              no                 1 - 2 times
## 1754                              no                 1 - 2 times
## 1755                              no                 1 - 2 times
## 1756                              no                 1 - 2 times
## 1757                              no                 1 - 2 times
## 1758                              no                 1 - 2 times
## 1759                              no                 1 - 2 times
## 1760                              no                 1 - 2 times
## 1761                              no                 1 - 2 times
## 1762                              no                 1 - 2 times
## 1763                              no                 1 - 2 times
## 1764                              no                 1 - 2 times
## 1765                              no                 1 - 2 times
## 1766                              no                 1 - 2 times
## 1767                              no                 1 - 2 times
## 1768                              no                 3 - 4 times
## 1769                              no                 1 - 2 times
## 1770                              no                 3 - 4 times
## 1771                              no                 3 - 4 times
## 1772                              no                 1 - 2 times
## 1773                              no                 1 - 2 times
## 1774                              no                 1 - 2 times
## 1775                              no                 1 - 2 times
## 1776                              no                 1 - 2 times
## 1777                              no                 1 - 2 times
## 1778                              no                 1 - 2 times
## 1779                              no                 1 - 2 times
## 1780                              no               I do not have
## 1781                              no               I do not have
## 1782                              no                 3 - 4 times
## 1783                              no                 3 - 4 times
## 1784                              no                 1 - 2 times
## 1785                              no                 1 - 2 times
## 1786                              no                 3 - 4 times
## 1787                              no                 1 - 2 times
## 1788                              no                 1 - 2 times
## 1789                              no                 1 - 2 times
## 1790                              no                 3 - 4 times
## 1791                              no                 1 - 2 times
## 1792                              no                 1 - 2 times
## 1793                              no                 1 - 2 times
## 1794                              no                 3 - 4 times
## 1795                              no                 1 - 2 times
## 1796                              no               I do not have
## 1797                              no               I do not have
## 1798                              no               I do not have
## 1799                              no               I do not have
## 1800                              no               I do not have
## 1801                              no               I do not have
## 1802                              no                 3 - 4 times
## 1803                              no                 3 - 4 times
## 1804                              no               I do not have
## 1805                              no               I do not have
## 1806                              no               I do not have
## 1807                              no               I do not have
## 1808                              no               I do not have
## 1809                              no                 3 - 4 times
## 1810                              no               I do not have
## 1811                              no               I do not have
## 1812                              no                 3 - 4 times
## 1813                              no               I do not have
## 1814                              no               I do not have
## 1815                              no                 1 - 2 times
## 1816                              no                 1 - 2 times
## 1817                              no               I do not have
## 1818                              no               I do not have
## 1819                              no               I do not have
## 1820                              no               I do not have
## 1821                              no               I do not have
## 1822                              no                 1 - 2 times
## 1823                              no                 1 - 2 times
## 1824                              no               I do not have
## 1825                              no               I do not have
## 1826                              no                 3 - 4 times
## 1827                              no                 3 - 4 times
## 1828                              no               I do not have
## 1829                              no               I do not have
## 1830                              no               I do not have
## 1831                              no               I do not have
## 1832                              no                 1 - 2 times
## 1833                              no                 3 - 4 times
## 1834                              no               I do not have
## 1835                              no               I do not have
## 1836                              no                 3 - 4 times
## 1837                              no                 3 - 4 times
## 1838                              no               I do not have
## 1839                              no                 1 - 2 times
## 1840                              no                 3 - 4 times
## 1841                              no                 1 - 2 times
## 1842                              no               I do not have
## 1843                              no               I do not have
## 1844                              no               I do not have
## 1845                              no               I do not have
## 1846                              no                 1 - 2 times
## 1847                              no                 1 - 2 times
## 1848                              no               I do not have
## 1849                              no               I do not have
## 1850                              no               I do not have
## 1851                              no               I do not have
## 1852                              no                 3 - 4 times
## 1853                              no                 3 - 4 times
## 1854                              no                 3 - 4 times
## 1855                              no                 1 - 2 times
## 1856                              no               I do not have
## 1857                              no               I do not have
## 1858                              no               I do not have
## 1859                              no               I do not have
## 1860                              no               I do not have
## 1861                              no               I do not have
## 1862                              no               I do not have
## 1863                              no               I do not have
## 1864                              no                 1 - 2 times
## 1865                              no                 1 - 2 times
## 1866                              no                 1 - 2 times
## 1867                              no                 3 - 4 times
## 1868                              no               I do not have
## 1869                              no               I do not have
## 1870                              no               I do not have
## 1871                              no               I do not have
## 1872                              no                 3 - 4 times
## 1873                              no                 3 - 4 times
## 1874                              no               I do not have
## 1875                              no               I do not have
## 1876                              no                 3 - 4 times
## 1877                              no                 1 - 2 times
## 1878                              no                 1 - 2 times
## 1879                              no                 3 - 4 times
## 1880                              no                 1 - 2 times
## 1881                              no                 1 - 2 times
## 1882                              no               I do not have
## 1883                              no               I do not have
## 1884                              no               I do not have
## 1885                              no               I do not have
## 1886                              no               I do not have
## 1887                              no               I do not have
## 1888                              no               I do not have
## 1889                              no               I do not have
## 1890                              no               I do not have
## 1891                              no               I do not have
## 1892                              no                 1 - 2 times
## 1893                              no                 3 - 4 times
## 1894                              no                 1 - 2 times
## 1895                              no                 1 - 2 times
## 1896                              no               I do not have
## 1897                              no               I do not have
## 1898                              no                 3 - 4 times
## 1899                              no                 3 - 4 times
## 1900                              no               I do not have
## 1901                              no               I do not have
## 1902                              no               I do not have
## 1903                              no               I do not have
## 1904                              no                 1 - 2 times
## 1905                              no                 1 - 2 times
## 1906                              no               I do not have
## 1907                              no               I do not have
## 1908                              no                 3 - 4 times
## 1909                              no                 3 - 4 times
## 1910                              no               I do not have
## 1911                              no               I do not have
## 1912                              no                 3 - 4 times
## 1913                              no                 1 - 2 times
## 1914                              no               I do not have
## 1915                              no               I do not have
## 1916                              no               I do not have
## 1917                              no               I do not have
## 1918                              no                 1 - 2 times
## 1919                              no                 1 - 2 times
## 1920                              no               I do not have
## 1921                              no               I do not have
## 1922                              no               I do not have
## 1923                              no               I do not have
## 1924                              no                 1 - 2 times
## 1925                              no                 3 - 4 times
## 1926                              no                 3 - 4 times
## 1927                              no                 3 - 4 times
## 1928                              no               I do not have
## 1929                              no               I do not have
## 1930                              no               I do not have
## 1931                              no               I do not have
## 1932                              no               I do not have
## 1933                              no               I do not have
## 1934                              no               I do not have
## 1935                              no               I do not have
## 1936                              no                 1 - 2 times
## 1937                              no               I do not have
## 1938                              no                 3 - 4 times
## 1939                              no                 3 - 4 times
## 1940                              no               I do not have
## 1941                              no               I do not have
## 1942                              no               I do not have
## 1943                              no               I do not have
## 1944                              no                 3 - 4 times
## 1945                              no                 3 - 4 times
## 1946                              no               I do not have
## 1947                              no               I do not have
## 1948                              no                 1 - 2 times
## 1949                              no                 1 - 2 times
## 1950                              no                 1 - 2 times
## 1951                              no                 3 - 4 times
## 1952                              no                 1 - 2 times
## 1953                              no                 1 - 2 times
## 1954                              no               I do not have
## 1955                              no               I do not have
## 1956                              no               I do not have
## 1957                              no               I do not have
## 1958                              no               I do not have
## 1959                              no               I do not have
## 1960                              no               I do not have
## 1961                              no               I do not have
## 1962                              no               I do not have
## 1963                              no               I do not have
## 1964                              no                 1 - 2 times
## 1965                              no                 3 - 4 times
## 1966                              no                 1 - 2 times
## 1967                              no                 1 - 2 times
## 1968                              no               I do not have
## 1969                              no               I do not have
## 1970                              no               I do not have
## 1971                              no               I do not have
## 1972                              no                 3 - 4 times
## 1973                              no                 3 - 4 times
## 1974                              no                 3 - 4 times
## 1975                              no                 3 - 4 times
## 1976                              no               I do not have
## 1977                              no               I do not have
## 1978                              no               I do not have
## 1979                              no               I do not have
## 1980                              no               I do not have
## 1981                              no               I do not have
## 1982                              no               I do not have
## 1983                              no               I do not have
## 1984                              no                 1 - 2 times
## 1985                              no                 1 - 2 times
## 1986                              no                 3 - 4 times
## 1987                              no                 3 - 4 times
## 1988                              no               I do not have
## 1989                              no               I do not have
## 1990                              no               I do not have
## 1991                              no               I do not have
## 1992                              no                 3 - 4 times
## 1993                              no                 3 - 4 times
## 1994                              no                 1 - 2 times
## 1995                              no                 3 - 4 times
## 1996                              no                 3 - 4 times
## 1997                              no                 1 - 2 times
## 1998                              no                 3 - 4 times
## 1999                              no                 1 - 2 times
## 2000                              no                 3 - 4 times
## 2001                              no                 1 - 2 times
## 2002                              no                 1 - 2 times
## 2003                              no                 1 - 2 times
## 2004                              no               I do not have
## 2005                              no               I do not have
## 2006                              no               I do not have
## 2007                              no               I do not have
## 2008                              no               I do not have
## 2009                              no               I do not have
## 2010                              no               I do not have
## 2011                              no               I do not have
## 2012                              no                 1 - 2 times
## 2013                              no                 1 - 2 times
## 2014                              no                 1 - 2 times
## 2015                              no                 3 - 4 times
## 2016                              no               I do not have
## 2017                              no               I do not have
## 2018                              no               I do not have
## 2019                              no               I do not have
## 2020                              no               I do not have
## 2021                              no               I do not have
## 2022                              no               I do not have
## 2023                              no               I do not have
## 2024                              no                 1 - 2 times
## 2025                              no                 3 - 4 times
## 2026                              no                 1 - 2 times
## 2027                              no                 3 - 4 times
## 2028                              no                 3 - 4 times
## 2029                              no                 1 - 2 times
## 2030                              no                 1 - 2 times
## 2031                              no                 1 - 2 times
## 2032                              no               I do not have
## 2033                              no               I do not have
## 2034                              no               I do not have
## 2035                              no               I do not have
## 2036                              no               I do not have
## 2037                              no               I do not have
## 2038                              no               I do not have
## 2039                              no               I do not have
## 2040                              no               I do not have
## 2041                              no               I do not have
## 2042                              no               I do not have
## 2043                              no               I do not have
## 2044                              no               I do not have
## 2045                              no               I do not have
## 2046                              no               I do not have
## 2047                              no               I do not have
## 2048                              no                 1 - 2 times
## 2049                              no                 1 - 2 times
## 2050                              no                 1 - 2 times
## 2051                              no                 1 - 2 times
## 2052                              no                 1 - 2 times
## 2053                              no                 3 - 4 times
## 2054                              no                 3 - 4 times
## 2055                              no                 3 - 4 times
## 2056                              no               I do not have
## 2057                              no               I do not have
## 2058                              no               I do not have
## 2059                              no               I do not have
## 2060                              no               I do not have
## 2061                              no               I do not have
## 2062                              no               I do not have
## 2063                              no               I do not have
## 2064                              no                 3 - 4 times
## 2065                              no                 3 - 4 times
## 2066                              no                 3 - 4 times
## 2067                              no                 3 - 4 times
## 2068                              no               I do not have
## 2069                              no               I do not have
## 2070                              no               I do not have
## 2071                              no               I do not have
## 2072                              no                 1 - 2 times
## 2073                              no                 3 - 4 times
## 2074                              no                 1 - 2 times
## 2075                              no                 1 - 2 times
## 2076                              no                 1 - 2 times
## 2077                              no                 3 - 4 times
## 2078                              no                 3 - 4 times
## 2079                              no                 3 - 4 times
## 2080                              no                 1 - 2 times
## 2081                              no                 3 - 4 times
## 2082                              no                 1 - 2 times
## 2083                              no                 1 - 2 times
## 2084                              no               I do not have
## 2085                              no               I do not have
## 2086                              no               I do not have
## 2087                              no               I do not have
## 2088                              no               I do not have
## 2089                              no               I do not have
## 2090                              no               I do not have
## 2091                              no               I do not have
## 2092                              no               I do not have
## 2093                              no               I do not have
## 2094                              no               I do not have
## 2095                              no               I do not have
## 2096                              no               I do not have
## 2097                              no               I do not have
## 2098                              no               I do not have
## 2099                              no               I do not have
## 2100                              no               I do not have
## 2101                              no               I do not have
## 2102                              no               I do not have
## 2103                              no               I do not have
## 2104                              no                 3 - 4 times
## 2105                              no                 3 - 4 times
## 2106                              no                 3 - 4 times
## 2107                              no                 3 - 4 times
## 2108                              no                 1 - 2 times
## 2109                              no                 1 - 2 times
## 2110                              no                 1 - 2 times
## 2111                              no                 1 - 2 times
##      Time_using_technology_devices Consumption_of_alcohol   Transportation_used
## 1                        3–5 hours                     no Public_Transportation
## 2                        0–2 hours              Sometimes Public_Transportation
## 3                        3–5 hours             Frequently Public_Transportation
## 4                        0–2 hours             Frequently               Walking
## 5                        0–2 hours              Sometimes Public_Transportation
## 6                        0–2 hours              Sometimes            Automobile
## 7                        0–2 hours              Sometimes             Motorbike
## 8                        0–2 hours              Sometimes Public_Transportation
## 9                        3–5 hours             Frequently Public_Transportation
## 10                       3–5 hours                     no Public_Transportation
## 11               More than 5 hours              Sometimes Public_Transportation
## 12                       3–5 hours              Sometimes Public_Transportation
## 13                       0–2 hours              Sometimes Public_Transportation
## 14                       3–5 hours             Frequently            Automobile
## 15                       3–5 hours              Sometimes Public_Transportation
## 16                       3–5 hours              Sometimes Public_Transportation
## 17                       0–2 hours              Sometimes Public_Transportation
## 18                       0–2 hours                     no            Automobile
## 19                       0–2 hours                     no            Automobile
## 20                       0–2 hours              Sometimes Public_Transportation
## 21               More than 5 hours                     no               Walking
## 22                       0–2 hours                     no            Automobile
## 23                       0–2 hours              Sometimes            Automobile
## 24               More than 5 hours              Sometimes Public_Transportation
## 25                       3–5 hours              Sometimes Public_Transportation
## 26               More than 5 hours                     no Public_Transportation
## 27               More than 5 hours                 Always               Walking
## 28                       3–5 hours              Sometimes            Automobile
## 29                       3–5 hours              Sometimes Public_Transportation
## 30               More than 5 hours             Frequently               Walking
## 31                       3–5 hours                     no             Motorbike
## 32                       0–2 hours              Sometimes Public_Transportation
## 33                       3–5 hours              Sometimes               Walking
## 34                       0–2 hours              Sometimes Public_Transportation
## 35                       0–2 hours              Sometimes Public_Transportation
## 36               More than 5 hours              Sometimes Public_Transportation
## 37                       0–2 hours                     no               Walking
## 38                       0–2 hours              Sometimes Public_Transportation
## 39                       3–5 hours              Sometimes Public_Transportation
## 40                       0–2 hours              Sometimes Public_Transportation
## 41                       0–2 hours              Sometimes Public_Transportation
## 42                       0–2 hours                     no               Walking
## 43                       0–2 hours                     no Public_Transportation
## 44                       3–5 hours             Frequently Public_Transportation
## 45                       0–2 hours                     no Public_Transportation
## 46                       3–5 hours                     no Public_Transportation
## 47                       0–2 hours              Sometimes Public_Transportation
## 48                       0–2 hours              Sometimes Public_Transportation
## 49                       0–2 hours              Sometimes               Walking
## 50                       0–2 hours              Sometimes Public_Transportation
## 51                       3–5 hours              Sometimes               Walking
## 52                       0–2 hours              Sometimes            Automobile
## 53               More than 5 hours                     no Public_Transportation
## 54                       3–5 hours                     no Public_Transportation
## 55                       0–2 hours                     no Public_Transportation
## 56                       0–2 hours              Sometimes            Automobile
## 57                       3–5 hours              Sometimes            Automobile
## 58                       3–5 hours                     no Public_Transportation
## 59                       3–5 hours                     no               Walking
## 60               More than 5 hours                     no Public_Transportation
## 61                       3–5 hours              Sometimes Public_Transportation
## 62                       3–5 hours              Sometimes Public_Transportation
## 63                       0–2 hours              Sometimes Public_Transportation
## 64               More than 5 hours              Sometimes            Automobile
## 65                       3–5 hours                     no Public_Transportation
## 66                       3–5 hours                     no Public_Transportation
## 67               More than 5 hours             Frequently Public_Transportation
## 68                       3–5 hours             Frequently            Automobile
## 69                       0–2 hours             Frequently            Automobile
## 70                       3–5 hours              Sometimes Public_Transportation
## 71               More than 5 hours                     no Public_Transportation
## 72                       3–5 hours              Sometimes Public_Transportation
## 73                       0–2 hours                     no Public_Transportation
## 74                       3–5 hours              Sometimes                  Bike
## 75                       3–5 hours             Frequently Public_Transportation
## 76                       0–2 hours                     no Public_Transportation
## 77                       0–2 hours                     no Public_Transportation
## 78                       0–2 hours                     no Public_Transportation
## 79                       3–5 hours                     no Public_Transportation
## 80                       0–2 hours              Sometimes Public_Transportation
## 81                       0–2 hours                     no Public_Transportation
## 82                       0–2 hours              Sometimes Public_Transportation
## 83                       3–5 hours                     no Public_Transportation
## 84                       0–2 hours                     no               Walking
## 85                       3–5 hours              Sometimes Public_Transportation
## 86                       0–2 hours                     no Public_Transportation
## 87                       0–2 hours                     no Public_Transportation
## 88                       0–2 hours                     no Public_Transportation
## 89                       0–2 hours                     no            Automobile
## 90                       3–5 hours             Frequently            Automobile
## 91                       0–2 hours                     no Public_Transportation
## 92                       3–5 hours             Frequently Public_Transportation
## 93                       0–2 hours             Frequently               Walking
## 94                       0–2 hours                     no               Walking
## 95                       0–2 hours                     no Public_Transportation
## 96                       0–2 hours             Frequently Public_Transportation
## 97                       0–2 hours              Sometimes Public_Transportation
## 98                       0–2 hours              Sometimes Public_Transportation
## 99                       0–2 hours              Sometimes Public_Transportation
## 100                      3–5 hours             Frequently Public_Transportation
## 101                      0–2 hours              Sometimes Public_Transportation
## 102                      0–2 hours                     no Public_Transportation
## 103                      0–2 hours              Sometimes            Automobile
## 104                      0–2 hours              Sometimes Public_Transportation
## 105                      0–2 hours              Sometimes            Automobile
## 106                      0–2 hours              Sometimes Public_Transportation
## 107                      0–2 hours              Sometimes Public_Transportation
## 108                      3–5 hours              Sometimes            Automobile
## 109              More than 5 hours                     no               Walking
## 110                      3–5 hours                     no Public_Transportation
## 111                      3–5 hours              Sometimes Public_Transportation
## 112                      0–2 hours                     no Public_Transportation
## 113                      0–2 hours              Sometimes Public_Transportation
## 114                      0–2 hours                     no               Walking
## 115                      0–2 hours             Frequently Public_Transportation
## 116                      3–5 hours                     no Public_Transportation
## 117              More than 5 hours                     no               Walking
## 118                      3–5 hours                     no Public_Transportation
## 119                      3–5 hours              Sometimes Public_Transportation
## 120                      3–5 hours              Sometimes            Automobile
## 121              More than 5 hours                     no               Walking
## 122              More than 5 hours             Frequently Public_Transportation
## 123                      0–2 hours                     no               Walking
## 124                      0–2 hours                     no Public_Transportation
## 125                      0–2 hours                     no Public_Transportation
## 126                      0–2 hours             Frequently Public_Transportation
## 127                      0–2 hours              Sometimes Public_Transportation
## 128                      0–2 hours              Sometimes Public_Transportation
## 129                      0–2 hours              Sometimes Public_Transportation
## 130                      3–5 hours             Frequently Public_Transportation
## 131                      3–5 hours                     no Public_Transportation
## 132                      0–2 hours                     no Public_Transportation
## 133              More than 5 hours             Frequently Public_Transportation
## 134                      3–5 hours             Frequently Public_Transportation
## 135                      0–2 hours              Sometimes            Automobile
## 136                      0–2 hours              Sometimes            Automobile
## 137                      3–5 hours              Sometimes Public_Transportation
## 138                      0–2 hours                     no             Motorbike
## 139                      0–2 hours                     no                  Bike
## 140                      3–5 hours                     no Public_Transportation
## 141                      3–5 hours              Sometimes Public_Transportation
## 142                      0–2 hours             Frequently Public_Transportation
## 143                      3–5 hours             Frequently            Automobile
## 144                      0–2 hours              Sometimes            Automobile
## 145              More than 5 hours              Sometimes Public_Transportation
## 146                      0–2 hours              Sometimes Public_Transportation
## 147              More than 5 hours             Frequently Public_Transportation
## 148                      0–2 hours              Sometimes            Automobile
## 149                      0–2 hours              Sometimes            Automobile
## 150                      0–2 hours              Sometimes            Automobile
## 151                      3–5 hours              Sometimes Public_Transportation
## 152                      0–2 hours              Sometimes            Automobile
## 153                      0–2 hours              Sometimes            Automobile
## 154                      0–2 hours                     no            Automobile
## 155                      0–2 hours              Sometimes Public_Transportation
## 156                      3–5 hours              Sometimes            Automobile
## 157                      3–5 hours                     no            Automobile
## 158                      3–5 hours              Sometimes Public_Transportation
## 159                      0–2 hours              Sometimes            Automobile
## 160                      0–2 hours             Frequently            Automobile
## 161                      3–5 hours              Sometimes Public_Transportation
## 162                      0–2 hours                     no            Automobile
## 163                      0–2 hours              Sometimes Public_Transportation
## 164                      0–2 hours                     no Public_Transportation
## 165                      3–5 hours              Sometimes            Automobile
## 166                      0–2 hours              Sometimes Public_Transportation
## 167                      0–2 hours              Sometimes            Automobile
## 168              More than 5 hours                     no               Walking
## 169                      0–2 hours              Sometimes Public_Transportation
## 170                      0–2 hours                     no            Automobile
## 171                      3–5 hours              Sometimes Public_Transportation
## 172                      0–2 hours              Sometimes Public_Transportation
## 173              More than 5 hours              Sometimes Public_Transportation
## 174                      3–5 hours                     no Public_Transportation
## 175                      0–2 hours              Sometimes Public_Transportation
## 176                      0–2 hours                     no Public_Transportation
## 177                      0–2 hours                     no Public_Transportation
## 178                      0–2 hours              Sometimes Public_Transportation
## 179              More than 5 hours             Frequently Public_Transportation
## 180                      0–2 hours              Sometimes Public_Transportation
## 181                      0–2 hours                     no Public_Transportation
## 182                      0–2 hours              Sometimes Public_Transportation
## 183                      3–5 hours                     no Public_Transportation
## 184                      0–2 hours              Sometimes Public_Transportation
## 185                      0–2 hours              Sometimes Public_Transportation
## 186                      0–2 hours              Sometimes            Automobile
## 187                      0–2 hours             Frequently            Automobile
## 188              More than 5 hours                     no Public_Transportation
## 189                      3–5 hours             Frequently            Automobile
## 190                      3–5 hours                     no Public_Transportation
## 191                      0–2 hours              Sometimes Public_Transportation
## 192                      0–2 hours              Sometimes Public_Transportation
## 193                      0–2 hours              Sometimes            Automobile
## 194                      3–5 hours                     no Public_Transportation
## 195                      0–2 hours                     no Public_Transportation
## 196                      3–5 hours              Sometimes               Walking
## 197              More than 5 hours              Sometimes                  Bike
## 198                      0–2 hours              Sometimes                  Bike
## 199              More than 5 hours                     no Public_Transportation
## 200                      3–5 hours              Sometimes Public_Transportation
## 201              More than 5 hours              Sometimes Public_Transportation
## 202                      0–2 hours              Sometimes            Automobile
## 203                      3–5 hours              Sometimes Public_Transportation
## 204                      0–2 hours              Sometimes            Automobile
## 205              More than 5 hours                     no            Automobile
## 206                      0–2 hours             Frequently Public_Transportation
## 207                      0–2 hours                     no Public_Transportation
## 208                      0–2 hours              Sometimes               Walking
## 209                      3–5 hours              Sometimes Public_Transportation
## 210                      3–5 hours              Sometimes Public_Transportation
## 211                      3–5 hours                     no Public_Transportation
## 212                      3–5 hours                     no Public_Transportation
## 213                      0–2 hours                     no Public_Transportation
## 214                      0–2 hours                     no Public_Transportation
## 215                      0–2 hours              Sometimes Public_Transportation
## 216              More than 5 hours              Sometimes Public_Transportation
## 217                      0–2 hours              Sometimes               Walking
## 218                      3–5 hours             Frequently            Automobile
## 219                      0–2 hours                     no Public_Transportation
## 220                      0–2 hours              Sometimes Public_Transportation
## 221              More than 5 hours             Frequently Public_Transportation
## 222                      3–5 hours              Sometimes Public_Transportation
## 223              More than 5 hours                     no Public_Transportation
## 224                      0–2 hours                     no Public_Transportation
## 225                      0–2 hours                     no Public_Transportation
## 226                      0–2 hours              Sometimes               Walking
## 227                      3–5 hours                     no            Automobile
## 228                      3–5 hours              Sometimes Public_Transportation
## 229                      0–2 hours                     no            Automobile
## 230              More than 5 hours                     no            Automobile
## 231                      0–2 hours              Sometimes               Walking
## 232                      0–2 hours              Sometimes Public_Transportation
## 233                      0–2 hours                     no Public_Transportation
## 234                      0–2 hours              Sometimes            Automobile
## 235                      0–2 hours                     no Public_Transportation
## 236                      0–2 hours                     no Public_Transportation
## 237                      0–2 hours                     no            Automobile
## 238                      3–5 hours                     no Public_Transportation
## 239                      3–5 hours                     no Public_Transportation
## 240                      3–5 hours                     no Public_Transportation
## 241                      3–5 hours                     no Public_Transportation
## 242                      0–2 hours                     no                  Bike
## 243              More than 5 hours                     no            Automobile
## 244                      0–2 hours              Sometimes            Automobile
## 245                      0–2 hours              Sometimes Public_Transportation
## 246                      3–5 hours              Sometimes            Automobile
## 247                      3–5 hours              Sometimes Public_Transportation
## 248                      3–5 hours                     no            Automobile
## 249                      0–2 hours              Sometimes            Automobile
## 250                      0–2 hours              Sometimes               Walking
## 251                      3–5 hours                     no Public_Transportation
## 252                      0–2 hours             Frequently            Automobile
## 253                      0–2 hours             Frequently            Automobile
## 254              More than 5 hours              Sometimes Public_Transportation
## 255                      0–2 hours                     no Public_Transportation
## 256                      0–2 hours                     no                  Bike
## 257                      0–2 hours              Sometimes Public_Transportation
## 258              More than 5 hours                     no Public_Transportation
## 259                      0–2 hours                     no Public_Transportation
## 260                      3–5 hours              Sometimes Public_Transportation
## 261                      0–2 hours                     no Public_Transportation
## 262                      0–2 hours              Sometimes               Walking
## 263                      3–5 hours              Sometimes Public_Transportation
## 264              More than 5 hours                     no Public_Transportation
## 265                      3–5 hours              Sometimes            Automobile
## 266                      3–5 hours              Sometimes Public_Transportation
## 267                      0–2 hours              Sometimes Public_Transportation
## 268                      0–2 hours             Frequently            Automobile
## 269              More than 5 hours                     no Public_Transportation
## 270                      3–5 hours              Sometimes               Walking
## 271                      3–5 hours              Sometimes Public_Transportation
## 272              More than 5 hours              Sometimes Public_Transportation
## 273                      3–5 hours                     no Public_Transportation
## 274                      0–2 hours              Sometimes             Motorbike
## 275                      3–5 hours              Sometimes Public_Transportation
## 276                      3–5 hours              Sometimes Public_Transportation
## 277                      0–2 hours                     no Public_Transportation
## 278              More than 5 hours              Sometimes               Walking
## 279                      0–2 hours              Sometimes            Automobile
## 280                      3–5 hours              Sometimes Public_Transportation
## 281                      0–2 hours              Sometimes Public_Transportation
## 282                      0–2 hours              Sometimes Public_Transportation
## 283                      3–5 hours                     no Public_Transportation
## 284                      3–5 hours              Sometimes               Walking
## 285                      3–5 hours              Sometimes Public_Transportation
## 286                      0–2 hours              Sometimes Public_Transportation
## 287                      3–5 hours              Sometimes Public_Transportation
## 288                      0–2 hours                     no Public_Transportation
## 289              More than 5 hours                     no Public_Transportation
## 290                      0–2 hours              Sometimes            Automobile
## 291                      3–5 hours              Sometimes Public_Transportation
## 292                      3–5 hours                     no               Walking
## 293                      3–5 hours                     no Public_Transportation
## 294                      0–2 hours                     no Public_Transportation
## 295              More than 5 hours              Sometimes Public_Transportation
## 296                      3–5 hours                     no               Walking
## 297                      3–5 hours              Sometimes Public_Transportation
## 298                      0–2 hours                     no            Automobile
## 299                      3–5 hours             Frequently Public_Transportation
## 300              More than 5 hours              Sometimes Public_Transportation
## 301                      0–2 hours              Sometimes Public_Transportation
## 302                      3–5 hours              Sometimes Public_Transportation
## 303              More than 5 hours              Sometimes               Walking
## 304                      3–5 hours              Sometimes Public_Transportation
## 305                      3–5 hours              Sometimes Public_Transportation
## 306                      3–5 hours              Sometimes Public_Transportation
## 307              More than 5 hours              Sometimes Public_Transportation
## 308              More than 5 hours              Sometimes Public_Transportation
## 309                      0–2 hours              Sometimes Public_Transportation
## 310                      3–5 hours                     no               Walking
## 311                      3–5 hours                     no Public_Transportation
## 312                      3–5 hours                     no Public_Transportation
## 313                      0–2 hours                     no Public_Transportation
## 314                      3–5 hours              Sometimes Public_Transportation
## 315                      0–2 hours                     no               Walking
## 316                      0–2 hours              Sometimes Public_Transportation
## 317                      3–5 hours                     no            Automobile
## 318                      3–5 hours                     no Public_Transportation
## 319                      0–2 hours              Sometimes Public_Transportation
## 320                      3–5 hours              Sometimes            Automobile
## 321                      3–5 hours                     no Public_Transportation
## 322                      3–5 hours                     no            Automobile
## 323                      0–2 hours              Sometimes Public_Transportation
## 324                      0–2 hours              Sometimes            Automobile
## 325                      0–2 hours              Sometimes Public_Transportation
## 326                      0–2 hours              Sometimes Public_Transportation
## 327                      0–2 hours              Sometimes Public_Transportation
## 328                      0–2 hours              Sometimes Public_Transportation
## 329                      3–5 hours              Sometimes               Walking
## 330                      3–5 hours              Sometimes Public_Transportation
## 331                      3–5 hours              Sometimes Public_Transportation
## 332                      3–5 hours                     no Public_Transportation
## 333                      0–2 hours                     no               Walking
## 334                      0–2 hours                     no            Automobile
## 335              More than 5 hours             Frequently Public_Transportation
## 336                      3–5 hours              Sometimes Public_Transportation
## 337                      3–5 hours                     no Public_Transportation
## 338              More than 5 hours                     no               Walking
## 339              More than 5 hours              Sometimes Public_Transportation
## 340                      0–2 hours             Frequently Public_Transportation
## 341                      3–5 hours                     no Public_Transportation
## 342                      0–2 hours              Sometimes Public_Transportation
## 343                      0–2 hours              Sometimes Public_Transportation
## 344                      0–2 hours                     no Public_Transportation
## 345                      3–5 hours              Sometimes Public_Transportation
## 346                      3–5 hours              Sometimes Public_Transportation
## 347                      0–2 hours                     no Public_Transportation
## 348                      3–5 hours              Sometimes               Walking
## 349              More than 5 hours                     no               Walking
## 350                      3–5 hours              Sometimes Public_Transportation
## 351              More than 5 hours              Sometimes               Walking
## 352                      0–2 hours                     no               Walking
## 353              More than 5 hours              Sometimes               Walking
## 354                      3–5 hours              Sometimes            Automobile
## 355              More than 5 hours                     no Public_Transportation
## 356                      0–2 hours              Sometimes Public_Transportation
## 357                      3–5 hours                     no               Walking
## 358                      3–5 hours                     no            Automobile
## 359                      0–2 hours             Frequently            Automobile
## 360                      0–2 hours              Sometimes Public_Transportation
## 361                      3–5 hours              Sometimes Public_Transportation
## 362                      0–2 hours                     no Public_Transportation
## 363                      0–2 hours              Sometimes            Automobile
## 364                      3–5 hours              Sometimes Public_Transportation
## 365                      3–5 hours              Sometimes Public_Transportation
## 366                      0–2 hours              Sometimes             Motorbike
## 367                      0–2 hours              Sometimes            Automobile
## 368                      3–5 hours              Sometimes Public_Transportation
## 369                      0–2 hours                     no            Automobile
## 370                      3–5 hours              Sometimes Public_Transportation
## 371                      3–5 hours                     no Public_Transportation
## 372              More than 5 hours              Sometimes Public_Transportation
## 373              More than 5 hours                     no            Automobile
## 374              More than 5 hours              Sometimes Public_Transportation
## 375                      3–5 hours              Sometimes            Automobile
## 376                      0–2 hours              Sometimes            Automobile
## 377                      0–2 hours              Sometimes            Automobile
## 378                      3–5 hours              Sometimes Public_Transportation
## 379                      3–5 hours              Sometimes Public_Transportation
## 380              More than 5 hours              Sometimes               Walking
## 381                      0–2 hours                     no             Motorbike
## 382                      0–2 hours              Sometimes Public_Transportation
## 383                      3–5 hours              Sometimes Public_Transportation
## 384                      3–5 hours              Sometimes            Automobile
## 385              More than 5 hours                     no               Walking
## 386                      3–5 hours                     no Public_Transportation
## 387              More than 5 hours                     no Public_Transportation
## 388                      0–2 hours              Sometimes             Motorbike
## 389                      0–2 hours                     no Public_Transportation
## 390                      0–2 hours                     no Public_Transportation
## 391              More than 5 hours                     no Public_Transportation
## 392                      3–5 hours              Sometimes               Walking
## 393              More than 5 hours                     no Public_Transportation
## 394                      3–5 hours              Sometimes Public_Transportation
## 395                      3–5 hours                     no Public_Transportation
## 396              More than 5 hours              Sometimes Public_Transportation
## 397                      3–5 hours             Frequently            Automobile
## 398                      0–2 hours                     no Public_Transportation
## 399                      0–2 hours              Sometimes Public_Transportation
## 400                      0–2 hours              Sometimes             Motorbike
## 401                      0–2 hours                     no Public_Transportation
## 402                      3–5 hours              Sometimes Public_Transportation
## 403                      3–5 hours              Sometimes               Walking
## 404                      0–2 hours                     no            Automobile
## 405                      3–5 hours              Sometimes            Automobile
## 406                      0–2 hours                     no Public_Transportation
## 407                      3–5 hours              Sometimes            Automobile
## 408              More than 5 hours              Sometimes               Walking
## 409                      0–2 hours              Sometimes Public_Transportation
## 410                      3–5 hours              Sometimes Public_Transportation
## 411                      3–5 hours                     no Public_Transportation
## 412                      0–2 hours              Sometimes Public_Transportation
## 413                      0–2 hours              Sometimes            Automobile
## 414                      0–2 hours              Sometimes Public_Transportation
## 415              More than 5 hours             Frequently            Automobile
## 416                      3–5 hours                     no               Walking
## 417                      0–2 hours                     no            Automobile
## 418                      3–5 hours             Frequently Public_Transportation
## 419                      0–2 hours              Sometimes Public_Transportation
## 420                      0–2 hours              Sometimes Public_Transportation
## 421                      0–2 hours              Sometimes            Automobile
## 422                      0–2 hours              Sometimes            Automobile
## 423                      0–2 hours              Sometimes                  Bike
## 424                      3–5 hours              Sometimes               Walking
## 425              More than 5 hours              Sometimes               Walking
## 426                      3–5 hours              Sometimes Public_Transportation
## 427                      3–5 hours                     no Public_Transportation
## 428                      0–2 hours              Sometimes Public_Transportation
## 429                      3–5 hours              Sometimes Public_Transportation
## 430                      0–2 hours              Sometimes            Automobile
## 431                      0–2 hours              Sometimes Public_Transportation
## 432                      3–5 hours              Sometimes Public_Transportation
## 433                      0–2 hours                     no Public_Transportation
## 434                      3–5 hours              Sometimes Public_Transportation
## 435                      3–5 hours             Frequently            Automobile
## 436                      3–5 hours                     no Public_Transportation
## 437                      0–2 hours             Frequently            Automobile
## 438                      0–2 hours              Sometimes               Walking
## 439                      3–5 hours              Sometimes            Automobile
## 440                      3–5 hours              Sometimes Public_Transportation
## 441                      0–2 hours                     no            Automobile
## 442              More than 5 hours                     no Public_Transportation
## 443                      3–5 hours              Sometimes               Walking
## 444              More than 5 hours              Sometimes Public_Transportation
## 445                      0–2 hours              Sometimes Public_Transportation
## 446                      0–2 hours              Sometimes Public_Transportation
## 447                      0–2 hours              Sometimes Public_Transportation
## 448                      3–5 hours              Sometimes Public_Transportation
## 449              More than 5 hours              Sometimes Public_Transportation
## 450              More than 5 hours              Sometimes Public_Transportation
## 451                      3–5 hours              Sometimes Public_Transportation
## 452                      0–2 hours                     no Public_Transportation
## 453                      3–5 hours              Sometimes            Automobile
## 454                      0–2 hours              Sometimes            Automobile
## 455                      0–2 hours                     no Public_Transportation
## 456                      3–5 hours              Sometimes Public_Transportation
## 457                      0–2 hours                     no Public_Transportation
## 458                      0–2 hours              Sometimes Public_Transportation
## 459                      3–5 hours              Sometimes Public_Transportation
## 460              More than 5 hours             Frequently Public_Transportation
## 461                      3–5 hours                     no Public_Transportation
## 462              More than 5 hours                     no Public_Transportation
## 463                      0–2 hours              Sometimes            Automobile
## 464                      3–5 hours              Sometimes Public_Transportation
## 465                      0–2 hours              Sometimes               Walking
## 466                      3–5 hours              Sometimes Public_Transportation
## 467                      0–2 hours                     no            Automobile
## 468                      0–2 hours                     no            Automobile
## 469                      0–2 hours              Sometimes Public_Transportation
## 470                      3–5 hours                     no Public_Transportation
## 471                      0–2 hours              Sometimes Public_Transportation
## 472                      0–2 hours                     no Public_Transportation
## 473                      3–5 hours                     no Public_Transportation
## 474                      0–2 hours              Sometimes Public_Transportation
## 475                      0–2 hours                     no Public_Transportation
## 476              More than 5 hours                     no Public_Transportation
## 477                      0–2 hours                     no Public_Transportation
## 478                      3–5 hours                     no Public_Transportation
## 479                      3–5 hours              Sometimes Public_Transportation
## 480              More than 5 hours              Sometimes Public_Transportation
## 481                      3–5 hours              Sometimes Public_Transportation
## 482                      0–2 hours              Sometimes Public_Transportation
## 483                      3–5 hours              Sometimes Public_Transportation
## 484                      0–2 hours                     no Public_Transportation
## 485              More than 5 hours                     no            Automobile
## 486                      3–5 hours              Sometimes Public_Transportation
## 487                      0–2 hours             Frequently Public_Transportation
## 488                      0–2 hours                     no             Motorbike
## 489                      3–5 hours              Sometimes               Walking
## 490              More than 5 hours                     no Public_Transportation
## 491                      0–2 hours              Sometimes Public_Transportation
## 492                      3–5 hours              Sometimes Public_Transportation
## 493                      0–2 hours                     no            Automobile
## 494                      0–2 hours              Sometimes             Motorbike
## 495                      0–2 hours              Sometimes Public_Transportation
## 496                      0–2 hours                     no             Motorbike
## 497              More than 5 hours              Sometimes Public_Transportation
## 498                      3–5 hours              Sometimes Public_Transportation
## 499                      3–5 hours              Sometimes Public_Transportation
## 500                      3–5 hours              Sometimes Public_Transportation
## 501                      0–2 hours              Sometimes Public_Transportation
## 502                      3–5 hours              Sometimes Public_Transportation
## 503                      0–2 hours              Sometimes Public_Transportation
## 504                      3–5 hours              Sometimes Public_Transportation
## 505                      0–2 hours              Sometimes Public_Transportation
## 506                      3–5 hours              Sometimes Public_Transportation
## 507                      3–5 hours              Sometimes Public_Transportation
## 508              More than 5 hours              Sometimes Public_Transportation
## 509                      3–5 hours              Sometimes Public_Transportation
## 510                      3–5 hours              Sometimes Public_Transportation
## 511                      3–5 hours                     no Public_Transportation
## 512                      3–5 hours                     no Public_Transportation
## 513                      3–5 hours                     no Public_Transportation
## 514                      0–2 hours                     no Public_Transportation
## 515                      0–2 hours                     no Public_Transportation
## 516                      0–2 hours                     no Public_Transportation
## 517                      0–2 hours                     no Public_Transportation
## 518                      0–2 hours                     no Public_Transportation
## 519                      0–2 hours                     no Public_Transportation
## 520                      3–5 hours                     no Public_Transportation
## 521                      0–2 hours                     no Public_Transportation
## 522                      3–5 hours                     no Public_Transportation
## 523                      3–5 hours              Sometimes Public_Transportation
## 524                      0–2 hours              Sometimes Public_Transportation
## 525                      0–2 hours              Sometimes Public_Transportation
## 526                      3–5 hours              Sometimes Public_Transportation
## 527                      0–2 hours              Sometimes Public_Transportation
## 528                      0–2 hours              Sometimes Public_Transportation
## 529                      3–5 hours              Sometimes Public_Transportation
## 530                      0–2 hours              Sometimes Public_Transportation
## 531                      0–2 hours              Sometimes Public_Transportation
## 532                      0–2 hours              Sometimes            Automobile
## 533                      3–5 hours              Sometimes            Automobile
## 534                      0–2 hours              Sometimes            Automobile
## 535                      3–5 hours                     no Public_Transportation
## 536                      0–2 hours                     no Public_Transportation
## 537                      3–5 hours                     no Public_Transportation
## 538              More than 5 hours              Sometimes Public_Transportation
## 539              More than 5 hours              Sometimes Public_Transportation
## 540              More than 5 hours              Sometimes Public_Transportation
## 541                      3–5 hours              Sometimes Public_Transportation
## 542                      3–5 hours              Sometimes Public_Transportation
## 543                      3–5 hours              Sometimes Public_Transportation
## 544              More than 5 hours                     no Public_Transportation
## 545              More than 5 hours                     no Public_Transportation
## 546              More than 5 hours                     no Public_Transportation
## 547                      3–5 hours              Sometimes Public_Transportation
## 548                      3–5 hours              Sometimes Public_Transportation
## 549                      3–5 hours              Sometimes Public_Transportation
## 550                      0–2 hours                     no Public_Transportation
## 551                      0–2 hours                     no Public_Transportation
## 552                      0–2 hours                     no Public_Transportation
## 553                      3–5 hours              Sometimes Public_Transportation
## 554                      3–5 hours              Sometimes Public_Transportation
## 555                      0–2 hours              Sometimes Public_Transportation
## 556                      3–5 hours              Sometimes Public_Transportation
## 557                      3–5 hours              Sometimes Public_Transportation
## 558                      3–5 hours              Sometimes Public_Transportation
## 559                      3–5 hours                     no            Automobile
## 560              More than 5 hours                     no            Automobile
## 561              More than 5 hours                     no            Automobile
## 562                      3–5 hours              Sometimes Public_Transportation
## 563              More than 5 hours              Sometimes Public_Transportation
## 564                      3–5 hours              Sometimes Public_Transportation
## 565                      0–2 hours                     no            Automobile
## 566                      0–2 hours                     no            Automobile
## 567              More than 5 hours                     no            Automobile
## 568                      3–5 hours                     no Public_Transportation
## 569                      3–5 hours                     no Public_Transportation
## 570                      0–2 hours                     no Public_Transportation
## 571                      3–5 hours              Sometimes Public_Transportation
## 572                      3–5 hours              Sometimes Public_Transportation
## 573                      3–5 hours              Sometimes Public_Transportation
## 574                      3–5 hours              Sometimes Public_Transportation
## 575                      3–5 hours              Sometimes Public_Transportation
## 576                      3–5 hours              Sometimes Public_Transportation
## 577                      0–2 hours              Sometimes Public_Transportation
## 578                      0–2 hours              Sometimes Public_Transportation
## 579                      3–5 hours              Sometimes Public_Transportation
## 580                      3–5 hours                     no            Automobile
## 581                      3–5 hours                     no            Automobile
## 582                      3–5 hours                     no            Automobile
## 583                      0–2 hours                     no Public_Transportation
## 584                      3–5 hours                     no Public_Transportation
## 585              More than 5 hours                     no Public_Transportation
## 586                      3–5 hours              Sometimes Public_Transportation
## 587                      3–5 hours              Sometimes Public_Transportation
## 588                      3–5 hours              Sometimes Public_Transportation
## 589              More than 5 hours              Sometimes Public_Transportation
## 590                      3–5 hours              Sometimes Public_Transportation
## 591                      0–2 hours              Sometimes Public_Transportation
## 592                      3–5 hours                     no            Automobile
## 593                      0–2 hours                     no            Automobile
## 594                      3–5 hours                     no            Automobile
## 595                      0–2 hours                     no            Automobile
## 596                      0–2 hours                     no            Automobile
## 597                      0–2 hours                     no            Automobile
## 598              More than 5 hours              Sometimes Public_Transportation
## 599                      3–5 hours              Sometimes Public_Transportation
## 600              More than 5 hours              Sometimes Public_Transportation
## 601                      0–2 hours              Sometimes Public_Transportation
## 602                      0–2 hours              Sometimes Public_Transportation
## 603                      0–2 hours              Sometimes Public_Transportation
## 604                      0–2 hours              Sometimes Public_Transportation
## 605                      3–5 hours              Sometimes Public_Transportation
## 606                      3–5 hours              Sometimes Public_Transportation
## 607              More than 5 hours              Sometimes Public_Transportation
## 608              More than 5 hours              Sometimes Public_Transportation
## 609              More than 5 hours              Sometimes Public_Transportation
## 610              More than 5 hours                     no Public_Transportation
## 611                      3–5 hours                     no Public_Transportation
## 612                      0–2 hours                     no Public_Transportation
## 613                      0–2 hours                     no Public_Transportation
## 614                      0–2 hours              Sometimes Public_Transportation
## 615                      0–2 hours              Sometimes Public_Transportation
## 616                      0–2 hours              Sometimes Public_Transportation
## 617                      3–5 hours                     no Public_Transportation
## 618                      0–2 hours              Sometimes            Automobile
## 619                      3–5 hours                     no Public_Transportation
## 620              More than 5 hours              Sometimes Public_Transportation
## 621                      3–5 hours              Sometimes Public_Transportation
## 622                      3–5 hours                     no Public_Transportation
## 623                      3–5 hours              Sometimes Public_Transportation
## 624                      0–2 hours                     no Public_Transportation
## 625                      0–2 hours              Sometimes Public_Transportation
## 626                      3–5 hours              Sometimes Public_Transportation
## 627                      3–5 hours                     no            Automobile
## 628                      3–5 hours              Sometimes Public_Transportation
## 629                      3–5 hours                     no            Automobile
## 630                      0–2 hours                     no Public_Transportation
## 631                      3–5 hours              Sometimes Public_Transportation
## 632                      3–5 hours              Sometimes Public_Transportation
## 633                      0–2 hours              Sometimes Public_Transportation
## 634                      3–5 hours                     no            Automobile
## 635              More than 5 hours                     no Public_Transportation
## 636              More than 5 hours              Sometimes Public_Transportation
## 637              More than 5 hours              Sometimes Public_Transportation
## 638                      0–2 hours                     no            Automobile
## 639                      0–2 hours                     no            Automobile
## 640              More than 5 hours              Sometimes Public_Transportation
## 641                      0–2 hours              Sometimes Public_Transportation
## 642                      3–5 hours              Sometimes Public_Transportation
## 643              More than 5 hours              Sometimes Public_Transportation
## 644              More than 5 hours                     no Public_Transportation
## 645              More than 5 hours                     no            Automobile
## 646                      3–5 hours                     no Public_Transportation
## 647                      3–5 hours                     no Public_Transportation
## 648                      3–5 hours                     no Public_Transportation
## 649                      3–5 hours                     no Public_Transportation
## 650                      0–2 hours                     no Public_Transportation
## 651                      0–2 hours                     no Public_Transportation
## 652                      0–2 hours                     no Public_Transportation
## 653                      0–2 hours                     no Public_Transportation
## 654                      0–2 hours                     no Public_Transportation
## 655                      0–2 hours                     no Public_Transportation
## 656                      0–2 hours              Sometimes Public_Transportation
## 657                      0–2 hours                     no Public_Transportation
## 658                      3–5 hours                     no Public_Transportation
## 659                      3–5 hours              Sometimes Public_Transportation
## 660                      0–2 hours              Sometimes Public_Transportation
## 661                      0–2 hours              Sometimes Public_Transportation
## 662                      3–5 hours              Sometimes Public_Transportation
## 663                      0–2 hours              Sometimes Public_Transportation
## 664                      0–2 hours              Sometimes Public_Transportation
## 665                      3–5 hours                     no Public_Transportation
## 666                      0–2 hours                     no Public_Transportation
## 667                      3–5 hours              Sometimes Public_Transportation
## 668                      0–2 hours              Sometimes            Automobile
## 669                      0–2 hours              Sometimes            Automobile
## 670              More than 5 hours                     no            Automobile
## 671                      3–5 hours              Sometimes Public_Transportation
## 672                      0–2 hours                     no Public_Transportation
## 673                      3–5 hours              Sometimes Public_Transportation
## 674                      3–5 hours              Sometimes Public_Transportation
## 675              More than 5 hours              Sometimes Public_Transportation
## 676                      3–5 hours              Sometimes Public_Transportation
## 677                      3–5 hours              Sometimes Public_Transportation
## 678                      3–5 hours              Sometimes Public_Transportation
## 679                      3–5 hours              Sometimes Public_Transportation
## 680              More than 5 hours                     no Public_Transportation
## 681              More than 5 hours                     no Public_Transportation
## 682              More than 5 hours                     no Public_Transportation
## 683                      3–5 hours              Sometimes Public_Transportation
## 684                      3–5 hours              Sometimes Public_Transportation
## 685                      3–5 hours              Sometimes Public_Transportation
## 686                      3–5 hours                     no Public_Transportation
## 687                      0–2 hours                     no Public_Transportation
## 688                      0–2 hours                     no Public_Transportation
## 689                      3–5 hours              Sometimes Public_Transportation
## 690                      3–5 hours              Sometimes Public_Transportation
## 691                      3–5 hours              Sometimes Public_Transportation
## 692                      3–5 hours              Sometimes Public_Transportation
## 693                      3–5 hours              Sometimes Public_Transportation
## 694                      3–5 hours              Sometimes Public_Transportation
## 695                      0–2 hours                     no            Automobile
## 696                      3–5 hours                     no            Automobile
## 697              More than 5 hours                     no            Automobile
## 698                      3–5 hours                     no Public_Transportation
## 699              More than 5 hours              Sometimes Public_Transportation
## 700                      3–5 hours              Sometimes Public_Transportation
## 701                      0–2 hours                     no            Automobile
## 702                      0–2 hours                     no            Automobile
## 703              More than 5 hours                     no            Automobile
## 704                      0–2 hours                     no Public_Transportation
## 705                      3–5 hours                     no Public_Transportation
## 706                      0–2 hours                     no Public_Transportation
## 707                      3–5 hours              Sometimes Public_Transportation
## 708                      3–5 hours              Sometimes Public_Transportation
## 709                      3–5 hours              Sometimes Public_Transportation
## 710                      3–5 hours              Sometimes Public_Transportation
## 711                      3–5 hours              Sometimes Public_Transportation
## 712                      3–5 hours              Sometimes Public_Transportation
## 713                      0–2 hours              Sometimes Public_Transportation
## 714                      0–2 hours              Sometimes Public_Transportation
## 715                      3–5 hours              Sometimes Public_Transportation
## 716                      3–5 hours                     no            Automobile
## 717                      3–5 hours                     no            Automobile
## 718                      3–5 hours                     no            Automobile
## 719                      0–2 hours                     no Public_Transportation
## 720                      3–5 hours                     no Public_Transportation
## 721              More than 5 hours                     no Public_Transportation
## 722                      3–5 hours              Sometimes Public_Transportation
## 723                      3–5 hours              Sometimes Public_Transportation
## 724                      3–5 hours              Sometimes Public_Transportation
## 725              More than 5 hours              Sometimes Public_Transportation
## 726              More than 5 hours              Sometimes Public_Transportation
## 727                      0–2 hours              Sometimes Public_Transportation
## 728              More than 5 hours                     no            Automobile
## 729                      0–2 hours                     no            Automobile
## 730                      3–5 hours                     no            Automobile
## 731                      0–2 hours                     no            Automobile
## 732                      3–5 hours                     no            Automobile
## 733                      0–2 hours                     no            Automobile
## 734              More than 5 hours              Sometimes Public_Transportation
## 735              More than 5 hours              Sometimes Public_Transportation
## 736                      3–5 hours              Sometimes Public_Transportation
## 737                      0–2 hours              Sometimes Public_Transportation
## 738                      0–2 hours              Sometimes Public_Transportation
## 739                      0–2 hours              Sometimes Public_Transportation
## 740                      3–5 hours              Sometimes Public_Transportation
## 741                      3–5 hours              Sometimes Public_Transportation
## 742                      3–5 hours              Sometimes Public_Transportation
## 743              More than 5 hours              Sometimes Public_Transportation
## 744              More than 5 hours              Sometimes Public_Transportation
## 745                      3–5 hours              Sometimes Public_Transportation
## 746                      3–5 hours                     no            Automobile
## 747                      0–2 hours              Sometimes Public_Transportation
## 748                      3–5 hours                     no            Automobile
## 749                      0–2 hours              Sometimes Public_Transportation
## 750                      0–2 hours              Sometimes Public_Transportation
## 751                      0–2 hours              Sometimes Public_Transportation
## 752                      0–2 hours              Sometimes            Automobile
## 753                      3–5 hours              Sometimes Public_Transportation
## 754                      0–2 hours              Sometimes Public_Transportation
## 755                      3–5 hours             Frequently Public_Transportation
## 756                      3–5 hours              Sometimes Public_Transportation
## 757                      0–2 hours              Sometimes            Automobile
## 758                      3–5 hours              Sometimes Public_Transportation
## 759                      0–2 hours              Sometimes Public_Transportation
## 760                      3–5 hours              Sometimes            Automobile
## 761                      0–2 hours              Sometimes            Automobile
## 762                      0–2 hours              Sometimes Public_Transportation
## 763                      0–2 hours              Sometimes Public_Transportation
## 764                      0–2 hours              Sometimes Public_Transportation
## 765                      0–2 hours              Sometimes Public_Transportation
## 766                      0–2 hours              Sometimes            Automobile
## 767                      0–2 hours              Sometimes            Automobile
## 768                      0–2 hours              Sometimes Public_Transportation
## 769                      3–5 hours              Sometimes Public_Transportation
## 770                      0–2 hours              Sometimes Public_Transportation
## 771                      0–2 hours              Sometimes Public_Transportation
## 772              More than 5 hours              Sometimes Public_Transportation
## 773                      0–2 hours              Sometimes Public_Transportation
## 774                      0–2 hours              Sometimes Public_Transportation
## 775                      0–2 hours              Sometimes Public_Transportation
## 776                      0–2 hours                     no Public_Transportation
## 777                      0–2 hours              Sometimes Public_Transportation
## 778                      0–2 hours              Sometimes            Automobile
## 779                      3–5 hours              Sometimes Public_Transportation
## 780              More than 5 hours              Sometimes Public_Transportation
## 781                      0–2 hours              Sometimes Public_Transportation
## 782                      0–2 hours              Sometimes Public_Transportation
## 783                      3–5 hours              Sometimes            Automobile
## 784              More than 5 hours              Sometimes Public_Transportation
## 785              More than 5 hours              Sometimes Public_Transportation
## 786                      3–5 hours              Sometimes Public_Transportation
## 787              More than 5 hours              Sometimes Public_Transportation
## 788                      0–2 hours              Sometimes            Automobile
## 789                      3–5 hours              Sometimes            Automobile
## 790                      0–2 hours              Sometimes            Automobile
## 791                      3–5 hours              Sometimes Public_Transportation
## 792              More than 5 hours                     no Public_Transportation
## 793                      0–2 hours                     no Public_Transportation
## 794                      0–2 hours              Sometimes Public_Transportation
## 795              More than 5 hours              Sometimes Public_Transportation
## 796                      0–2 hours                     no            Automobile
## 797                      3–5 hours              Sometimes            Automobile
## 798                      0–2 hours                     no Public_Transportation
## 799                      0–2 hours              Sometimes Public_Transportation
## 800              More than 5 hours             Frequently Public_Transportation
## 801              More than 5 hours                     no Public_Transportation
## 802                      3–5 hours             Frequently Public_Transportation
## 803                      0–2 hours              Sometimes Public_Transportation
## 804                      0–2 hours                     no            Automobile
## 805                      0–2 hours                     no            Automobile
## 806                      0–2 hours              Sometimes Public_Transportation
## 807                      0–2 hours              Sometimes Public_Transportation
## 808                      3–5 hours                     no            Automobile
## 809                      0–2 hours              Sometimes Public_Transportation
## 810                      0–2 hours              Sometimes Public_Transportation
## 811                      3–5 hours              Sometimes Public_Transportation
## 812                      0–2 hours              Sometimes Public_Transportation
## 813                      0–2 hours              Sometimes Public_Transportation
## 814                      0–2 hours              Sometimes            Automobile
## 815                      3–5 hours              Sometimes Public_Transportation
## 816                      3–5 hours              Sometimes Public_Transportation
## 817              More than 5 hours              Sometimes Public_Transportation
## 818              More than 5 hours              Sometimes Public_Transportation
## 819                      3–5 hours             Frequently Public_Transportation
## 820                      0–2 hours              Sometimes Public_Transportation
## 821                      0–2 hours              Sometimes            Automobile
## 822                      0–2 hours              Sometimes            Automobile
## 823                      3–5 hours              Sometimes Public_Transportation
## 824              More than 5 hours              Sometimes Public_Transportation
## 825                      0–2 hours              Sometimes Public_Transportation
## 826                      0–2 hours              Sometimes            Automobile
## 827                      0–2 hours              Sometimes            Automobile
## 828                      0–2 hours              Sometimes            Automobile
## 829                      0–2 hours              Sometimes Public_Transportation
## 830                      0–2 hours              Sometimes Public_Transportation
## 831                      0–2 hours              Sometimes Public_Transportation
## 832                      0–2 hours              Sometimes Public_Transportation
## 833                      0–2 hours              Sometimes Public_Transportation
## 834                      0–2 hours              Sometimes Public_Transportation
## 835                      0–2 hours              Sometimes Public_Transportation
## 836                      0–2 hours              Sometimes            Automobile
## 837                      3–5 hours              Sometimes            Automobile
## 838                      0–2 hours              Sometimes Public_Transportation
## 839                      0–2 hours              Sometimes Public_Transportation
## 840                      0–2 hours              Sometimes Public_Transportation
## 841                      0–2 hours              Sometimes Public_Transportation
## 842                      3–5 hours              Sometimes Public_Transportation
## 843                      3–5 hours              Sometimes Public_Transportation
## 844                      3–5 hours              Sometimes Public_Transportation
## 845                      0–2 hours              Sometimes Public_Transportation
## 846                      0–2 hours              Sometimes Public_Transportation
## 847              More than 5 hours              Sometimes Public_Transportation
## 848                      3–5 hours              Sometimes Public_Transportation
## 849                      3–5 hours              Sometimes Public_Transportation
## 850                      0–2 hours              Sometimes Public_Transportation
## 851                      0–2 hours              Sometimes Public_Transportation
## 852                      0–2 hours              Sometimes Public_Transportation
## 853                      0–2 hours              Sometimes Public_Transportation
## 854                      3–5 hours                     no Public_Transportation
## 855                      0–2 hours              Sometimes Public_Transportation
## 856                      0–2 hours              Sometimes Public_Transportation
## 857                      0–2 hours              Sometimes            Automobile
## 858                      3–5 hours              Sometimes Public_Transportation
## 859                      0–2 hours              Sometimes Public_Transportation
## 860              More than 5 hours              Sometimes Public_Transportation
## 861                      3–5 hours              Sometimes Public_Transportation
## 862                      3–5 hours              Sometimes Public_Transportation
## 863                      0–2 hours              Sometimes            Automobile
## 864                      0–2 hours              Sometimes            Automobile
## 865                      3–5 hours              Sometimes Public_Transportation
## 866              More than 5 hours              Sometimes Public_Transportation
## 867                      3–5 hours              Sometimes Public_Transportation
## 868                      3–5 hours                     no Public_Transportation
## 869                      0–2 hours              Sometimes Public_Transportation
## 870                      0–2 hours              Sometimes Public_Transportation
## 871                      0–2 hours              Sometimes            Automobile
## 872                      3–5 hours              Sometimes            Automobile
## 873                      3–5 hours              Sometimes            Automobile
## 874                      0–2 hours              Sometimes            Automobile
## 875              More than 5 hours                     no Public_Transportation
## 876                      0–2 hours                     no Public_Transportation
## 877                      3–5 hours                     no Public_Transportation
## 878                      3–5 hours                     no Public_Transportation
## 879                      0–2 hours                     no Public_Transportation
## 880                      3–5 hours              Sometimes Public_Transportation
## 881                      3–5 hours              Sometimes Public_Transportation
## 882                      0–2 hours              Sometimes Public_Transportation
## 883                      3–5 hours                     no            Automobile
## 884                      0–2 hours              Sometimes            Automobile
## 885                      3–5 hours                     no Public_Transportation
## 886                      3–5 hours                     no Public_Transportation
## 887                      3–5 hours              Sometimes Public_Transportation
## 888                      0–2 hours              Sometimes Public_Transportation
## 889              More than 5 hours             Frequently Public_Transportation
## 890                      3–5 hours             Frequently Public_Transportation
## 891              More than 5 hours                     no Public_Transportation
## 892                      0–2 hours              Sometimes Public_Transportation
## 893                      3–5 hours              Sometimes Public_Transportation
## 894                      3–5 hours                     no            Automobile
## 895                      0–2 hours                     no            Automobile
## 896                      0–2 hours              Sometimes Public_Transportation
## 897                      0–2 hours              Sometimes Public_Transportation
## 898                      0–2 hours              Sometimes            Automobile
## 899                      0–2 hours              Sometimes Public_Transportation
## 900                      0–2 hours              Sometimes Public_Transportation
## 901                      3–5 hours              Sometimes Public_Transportation
## 902                      0–2 hours              Sometimes Public_Transportation
## 903                      0–2 hours              Sometimes            Automobile
## 904                      3–5 hours              Sometimes            Automobile
## 905                      3–5 hours              Sometimes Public_Transportation
## 906                      3–5 hours              Sometimes Public_Transportation
## 907                      0–2 hours              Sometimes Public_Transportation
## 908                      3–5 hours                     no Public_Transportation
## 909              More than 5 hours              Sometimes Public_Transportation
## 910              More than 5 hours              Sometimes Public_Transportation
## 911                      0–2 hours              Sometimes            Automobile
## 912                      0–2 hours              Sometimes Public_Transportation
## 913                      3–5 hours              Sometimes Public_Transportation
## 914                      0–2 hours              Sometimes Public_Transportation
## 915                      0–2 hours              Sometimes Public_Transportation
## 916                      3–5 hours              Sometimes            Automobile
## 917                      3–5 hours              Sometimes            Automobile
## 918                      3–5 hours              Sometimes            Automobile
## 919                      0–2 hours              Sometimes Public_Transportation
## 920                      0–2 hours              Sometimes Public_Transportation
## 921                      0–2 hours              Sometimes Public_Transportation
## 922                      0–2 hours              Sometimes Public_Transportation
## 923                      0–2 hours              Sometimes Public_Transportation
## 924                      0–2 hours              Sometimes Public_Transportation
## 925                      0–2 hours              Sometimes            Automobile
## 926                      0–2 hours              Sometimes            Automobile
## 927                      3–5 hours              Sometimes Public_Transportation
## 928                      0–2 hours              Sometimes Public_Transportation
## 929                      3–5 hours              Sometimes Public_Transportation
## 930                      0–2 hours              Sometimes Public_Transportation
## 931                      0–2 hours              Sometimes Public_Transportation
## 932                      0–2 hours              Sometimes Public_Transportation
## 933              More than 5 hours              Sometimes Public_Transportation
## 934                      3–5 hours              Sometimes Public_Transportation
## 935                      0–2 hours              Sometimes Public_Transportation
## 936                      0–2 hours              Sometimes Public_Transportation
## 937                      0–2 hours              Sometimes Public_Transportation
## 938                      3–5 hours              Sometimes Public_Transportation
## 939                      0–2 hours              Sometimes Public_Transportation
## 940                      3–5 hours                     no Public_Transportation
## 941                      0–2 hours              Sometimes Public_Transportation
## 942                      0–2 hours              Sometimes Public_Transportation
## 943                      0–2 hours              Sometimes            Automobile
## 944                      3–5 hours                     no Public_Transportation
## 945                      3–5 hours                     no Public_Transportation
## 946              More than 5 hours              Sometimes Public_Transportation
## 947                      0–2 hours              Sometimes Public_Transportation
## 948                      0–2 hours              Sometimes Public_Transportation
## 949                      3–5 hours              Sometimes            Automobile
## 950              More than 5 hours              Sometimes Public_Transportation
## 951              More than 5 hours              Sometimes Public_Transportation
## 952              More than 5 hours              Sometimes Public_Transportation
## 953              More than 5 hours              Sometimes Public_Transportation
## 954                      3–5 hours                     no Public_Transportation
## 955              More than 5 hours              Sometimes Public_Transportation
## 956                      0–2 hours              Sometimes            Automobile
## 957                      3–5 hours              Sometimes            Automobile
## 958                      0–2 hours              Sometimes            Automobile
## 959                      3–5 hours              Sometimes Public_Transportation
## 960              More than 5 hours                     no Public_Transportation
## 961              More than 5 hours                     no Public_Transportation
## 962                      0–2 hours                     no Public_Transportation
## 963                      0–2 hours              Sometimes Public_Transportation
## 964                      0–2 hours              Sometimes Public_Transportation
## 965              More than 5 hours              Sometimes Public_Transportation
## 966              More than 5 hours              Sometimes Public_Transportation
## 967                      0–2 hours                     no            Automobile
## 968                      3–5 hours              Sometimes            Automobile
## 969                      0–2 hours              Sometimes            Automobile
## 970                      0–2 hours             Frequently Public_Transportation
## 971                      0–2 hours              Sometimes Public_Transportation
## 972                      0–2 hours              Sometimes Public_Transportation
## 973              More than 5 hours                     no Public_Transportation
## 974              More than 5 hours                     no Public_Transportation
## 975                      3–5 hours             Frequently Public_Transportation
## 976                      3–5 hours             Frequently Public_Transportation
## 977                      3–5 hours              Sometimes Public_Transportation
## 978                      3–5 hours              Sometimes Public_Transportation
## 979                      0–2 hours              Sometimes Public_Transportation
## 980                      3–5 hours                     no Public_Transportation
## 981                      3–5 hours                     no Public_Transportation
## 982                      0–2 hours              Sometimes               Walking
## 983                      0–2 hours              Sometimes            Automobile
## 984                      3–5 hours              Sometimes            Automobile
## 985                      3–5 hours                     no Public_Transportation
## 986              More than 5 hours                     no Public_Transportation
## 987              More than 5 hours              Sometimes Public_Transportation
## 988                      3–5 hours              Sometimes            Automobile
## 989                      3–5 hours              Sometimes            Automobile
## 990                      3–5 hours                     no Public_Transportation
## 991                      3–5 hours                     no Public_Transportation
## 992                      3–5 hours              Sometimes Public_Transportation
## 993                      3–5 hours                     no Public_Transportation
## 994                      3–5 hours                     no Public_Transportation
## 995                      3–5 hours              Sometimes Public_Transportation
## 996                      3–5 hours              Sometimes Public_Transportation
## 997              More than 5 hours                     no Public_Transportation
## 998              More than 5 hours                     no Public_Transportation
## 999                      3–5 hours              Sometimes Public_Transportation
## 1000                     3–5 hours              Sometimes Public_Transportation
## 1001                     3–5 hours              Sometimes Public_Transportation
## 1002                     0–2 hours              Sometimes Public_Transportation
## 1003                     0–2 hours              Sometimes Public_Transportation
## 1004                     3–5 hours             Frequently            Automobile
## 1005                     3–5 hours                     no Public_Transportation
## 1006                     3–5 hours              Sometimes Public_Transportation
## 1007             More than 5 hours              Sometimes Public_Transportation
## 1008             More than 5 hours              Sometimes Public_Transportation
## 1009                     3–5 hours              Sometimes Public_Transportation
## 1010             More than 5 hours              Sometimes Public_Transportation
## 1011                     3–5 hours             Frequently Public_Transportation
## 1012                     0–2 hours                     no            Automobile
## 1013                     0–2 hours             Frequently Public_Transportation
## 1014                     0–2 hours                     no            Automobile
## 1015                     3–5 hours                     no            Automobile
## 1016             More than 5 hours                     no Public_Transportation
## 1017                     3–5 hours                     no Public_Transportation
## 1018                     3–5 hours                     no            Automobile
## 1019             More than 5 hours              Sometimes Public_Transportation
## 1020                     0–2 hours                     no Public_Transportation
## 1021                     0–2 hours                     no Public_Transportation
## 1022                     3–5 hours                     no Public_Transportation
## 1023                     3–5 hours                     no Public_Transportation
## 1024                     3–5 hours              Sometimes Public_Transportation
## 1025                     3–5 hours              Sometimes Public_Transportation
## 1026                     0–2 hours                     no            Automobile
## 1027             More than 5 hours                     no            Automobile
## 1028                     3–5 hours                     no            Automobile
## 1029                     3–5 hours                     no            Automobile
## 1030                     3–5 hours              Sometimes            Automobile
## 1031                     0–2 hours              Sometimes            Automobile
## 1032                     3–5 hours              Sometimes Public_Transportation
## 1033                     3–5 hours              Sometimes Public_Transportation
## 1034                     0–2 hours                     no Public_Transportation
## 1035                     0–2 hours                     no            Automobile
## 1036                     0–2 hours              Sometimes Public_Transportation
## 1037                     0–2 hours              Sometimes Public_Transportation
## 1038                     3–5 hours              Sometimes Public_Transportation
## 1039                     0–2 hours                     no            Automobile
## 1040                     3–5 hours              Sometimes Public_Transportation
## 1041                     0–2 hours                     no            Automobile
## 1042                     3–5 hours                     no            Automobile
## 1043                     0–2 hours                     no            Automobile
## 1044                     0–2 hours              Sometimes Public_Transportation
## 1045                     3–5 hours              Sometimes Public_Transportation
## 1046                     0–2 hours              Sometimes            Automobile
## 1047                     0–2 hours              Sometimes Public_Transportation
## 1048                     3–5 hours              Sometimes Public_Transportation
## 1049                     3–5 hours              Sometimes Public_Transportation
## 1050                     3–5 hours              Sometimes Public_Transportation
## 1051                     0–2 hours              Sometimes Public_Transportation
## 1052                     3–5 hours              Sometimes Public_Transportation
## 1053                     0–2 hours                     no            Automobile
## 1054                     0–2 hours              Sometimes Public_Transportation
## 1055                     0–2 hours              Sometimes Public_Transportation
## 1056                     3–5 hours              Sometimes Public_Transportation
## 1057                     3–5 hours              Sometimes Public_Transportation
## 1058                     3–5 hours              Sometimes Public_Transportation
## 1059                     3–5 hours                     no Public_Transportation
## 1060             More than 5 hours                     no            Automobile
## 1061                     3–5 hours                     no            Automobile
## 1062                     0–2 hours              Sometimes Public_Transportation
## 1063                     0–2 hours                     no            Automobile
## 1064                     0–2 hours                     no            Automobile
## 1065                     0–2 hours              Sometimes Public_Transportation
## 1066                     3–5 hours                     no Public_Transportation
## 1067                     0–2 hours              Sometimes Public_Transportation
## 1068                     0–2 hours                     no            Automobile
## 1069             More than 5 hours                     no Public_Transportation
## 1070                     0–2 hours                     no Public_Transportation
## 1071                     0–2 hours              Sometimes            Automobile
## 1072                     3–5 hours                     no Public_Transportation
## 1073                     0–2 hours              Sometimes Public_Transportation
## 1074                     3–5 hours                     no Public_Transportation
## 1075                     3–5 hours              Sometimes Public_Transportation
## 1076             More than 5 hours                     no Public_Transportation
## 1077                     3–5 hours              Sometimes Public_Transportation
## 1078                     0–2 hours                     no Public_Transportation
## 1079                     0–2 hours              Sometimes Public_Transportation
## 1080                     3–5 hours              Sometimes Public_Transportation
## 1081                     3–5 hours             Frequently            Automobile
## 1082                     3–5 hours              Sometimes Public_Transportation
## 1083                     3–5 hours              Sometimes Public_Transportation
## 1084             More than 5 hours              Sometimes Public_Transportation
## 1085                     3–5 hours              Sometimes Public_Transportation
## 1086                     3–5 hours             Frequently            Automobile
## 1087                     0–2 hours                     no            Automobile
## 1088                     0–2 hours             Frequently            Automobile
## 1089                     0–2 hours                     no            Automobile
## 1090                     3–5 hours                     no            Automobile
## 1091                     3–5 hours                     no Public_Transportation
## 1092                     0–2 hours                     no            Automobile
## 1093                     3–5 hours              Sometimes Public_Transportation
## 1094                     3–5 hours                     no Public_Transportation
## 1095                     0–2 hours                     no Public_Transportation
## 1096                     3–5 hours              Sometimes Public_Transportation
## 1097                     0–2 hours                     no            Automobile
## 1098                     3–5 hours                     no            Automobile
## 1099                     0–2 hours              Sometimes            Automobile
## 1100                     3–5 hours              Sometimes Public_Transportation
## 1101                     3–5 hours              Sometimes Public_Transportation
## 1102                     0–2 hours                     no            Automobile
## 1103                     3–5 hours              Sometimes Public_Transportation
## 1104                     0–2 hours                     no Public_Transportation
## 1105                     0–2 hours                     no            Automobile
## 1106             More than 5 hours              Sometimes Public_Transportation
## 1107                     0–2 hours                     no            Automobile
## 1108                     3–5 hours                     no            Automobile
## 1109                     3–5 hours              Sometimes Public_Transportation
## 1110                     0–2 hours              Sometimes            Automobile
## 1111                     3–5 hours              Sometimes Public_Transportation
## 1112                     3–5 hours              Sometimes Public_Transportation
## 1113                     3–5 hours              Sometimes Public_Transportation
## 1114                     3–5 hours              Sometimes Public_Transportation
## 1115                     0–2 hours                     no            Automobile
## 1116                     3–5 hours              Sometimes Public_Transportation
## 1117                     0–2 hours              Sometimes Public_Transportation
## 1118                     0–2 hours              Sometimes Public_Transportation
## 1119                     3–5 hours                     no Public_Transportation
## 1120             More than 5 hours                     no            Automobile
## 1121                     3–5 hours              Sometimes Public_Transportation
## 1122                     3–5 hours                     no            Automobile
## 1123                     3–5 hours              Sometimes Public_Transportation
## 1124                     0–2 hours              Sometimes Public_Transportation
## 1125                     3–5 hours                     no Public_Transportation
## 1126                     3–5 hours                     no Public_Transportation
## 1127                     0–2 hours              Sometimes            Automobile
## 1128                     0–2 hours                     no            Automobile
## 1129                     0–2 hours                     no            Automobile
## 1130                     3–5 hours                     no Public_Transportation
## 1131             More than 5 hours                     no Public_Transportation
## 1132                     3–5 hours                     no Public_Transportation
## 1133                     3–5 hours                     no            Automobile
## 1134                     3–5 hours              Sometimes            Automobile
## 1135                     3–5 hours                     no Public_Transportation
## 1136                     3–5 hours                     no Public_Transportation
## 1137                     0–2 hours              Sometimes Public_Transportation
## 1138                     3–5 hours                     no Public_Transportation
## 1139                     3–5 hours                     no Public_Transportation
## 1140             More than 5 hours              Sometimes Public_Transportation
## 1141                     3–5 hours              Sometimes Public_Transportation
## 1142                     3–5 hours                     no Public_Transportation
## 1143             More than 5 hours                     no Public_Transportation
## 1144                     3–5 hours              Sometimes Public_Transportation
## 1145                     0–2 hours              Sometimes Public_Transportation
## 1146                     3–5 hours             Frequently Public_Transportation
## 1147                     0–2 hours              Sometimes Public_Transportation
## 1148                     3–5 hours              Sometimes Public_Transportation
## 1149                     3–5 hours             Frequently            Automobile
## 1150                     3–5 hours              Sometimes Public_Transportation
## 1151                     0–2 hours              Sometimes Public_Transportation
## 1152             More than 5 hours              Sometimes Public_Transportation
## 1153             More than 5 hours              Sometimes Public_Transportation
## 1154                     3–5 hours              Sometimes Public_Transportation
## 1155                     3–5 hours              Sometimes Public_Transportation
## 1156                     3–5 hours              Sometimes Public_Transportation
## 1157                     0–2 hours                     no            Automobile
## 1158                     3–5 hours             Frequently Public_Transportation
## 1159                     0–2 hours                     no            Automobile
## 1160                     3–5 hours                     no            Automobile
## 1161             More than 5 hours                     no Public_Transportation
## 1162                     3–5 hours                     no Public_Transportation
## 1163                     3–5 hours                     no            Automobile
## 1164                     3–5 hours                     no Public_Transportation
## 1165                     0–2 hours                     no Public_Transportation
## 1166                     0–2 hours                     no Public_Transportation
## 1167                     3–5 hours                     no Public_Transportation
## 1168                     3–5 hours                     no Public_Transportation
## 1169             More than 5 hours                     no Public_Transportation
## 1170                     3–5 hours              Sometimes Public_Transportation
## 1171                     0–2 hours                     no            Automobile
## 1172                     3–5 hours                     no            Automobile
## 1173                     3–5 hours                     no            Automobile
## 1174                     3–5 hours                     no            Automobile
## 1175                     0–2 hours              Sometimes            Automobile
## 1176                     0–2 hours              Sometimes            Automobile
## 1177                     3–5 hours                     no Public_Transportation
## 1178                     3–5 hours              Sometimes Public_Transportation
## 1179                     3–5 hours              Sometimes Public_Transportation
## 1180                     0–2 hours                     no            Automobile
## 1181                     0–2 hours              Sometimes Public_Transportation
## 1182                     0–2 hours              Sometimes Public_Transportation
## 1183                     3–5 hours                     no Public_Transportation
## 1184                     0–2 hours                     no            Automobile
## 1185                     3–5 hours              Sometimes Public_Transportation
## 1186                     0–2 hours                     no            Automobile
## 1187                     3–5 hours                     no            Automobile
## 1188                     0–2 hours                     no            Automobile
## 1189                     3–5 hours              Sometimes Public_Transportation
## 1190                     3–5 hours              Sometimes Public_Transportation
## 1191                     0–2 hours              Sometimes            Automobile
## 1192                     0–2 hours              Sometimes Public_Transportation
## 1193                     3–5 hours                     no Public_Transportation
## 1194                     3–5 hours              Sometimes Public_Transportation
## 1195                     3–5 hours              Sometimes Public_Transportation
## 1196                     0–2 hours              Sometimes Public_Transportation
## 1197                     3–5 hours              Sometimes Public_Transportation
## 1198                     0–2 hours                     no            Automobile
## 1199                     0–2 hours              Sometimes Public_Transportation
## 1200                     0–2 hours              Sometimes Public_Transportation
## 1201                     3–5 hours              Sometimes            Automobile
## 1202                     3–5 hours              Sometimes Public_Transportation
## 1203                     3–5 hours              Sometimes Public_Transportation
## 1204                     3–5 hours                     no Public_Transportation
## 1205             More than 5 hours                     no            Automobile
## 1206                     3–5 hours                     no            Automobile
## 1207                     0–2 hours              Sometimes Public_Transportation
## 1208                     0–2 hours                     no            Automobile
## 1209                     0–2 hours                     no            Automobile
## 1210             More than 5 hours              Sometimes Public_Transportation
## 1211             More than 5 hours              Sometimes Public_Transportation
## 1212                     0–2 hours              Sometimes            Automobile
## 1213                     3–5 hours              Sometimes            Automobile
## 1214                     0–2 hours              Sometimes Public_Transportation
## 1215                     0–2 hours              Sometimes Public_Transportation
## 1216                     0–2 hours                     no            Automobile
## 1217                     0–2 hours                     no            Automobile
## 1218                     3–5 hours              Sometimes Public_Transportation
## 1219             More than 5 hours              Sometimes Public_Transportation
## 1220                     3–5 hours                     no Public_Transportation
## 1221                     3–5 hours                     no Public_Transportation
## 1222                     3–5 hours                     no Public_Transportation
## 1223                     0–2 hours                     no Public_Transportation
## 1224                     0–2 hours              Sometimes            Automobile
## 1225                     3–5 hours                     no Public_Transportation
## 1226             More than 5 hours                     no Public_Transportation
## 1227             More than 5 hours                     no Public_Transportation
## 1228                     3–5 hours              Sometimes Public_Transportation
## 1229                     0–2 hours              Sometimes            Automobile
## 1230                     0–2 hours              Sometimes            Automobile
## 1231                     3–5 hours                     no Public_Transportation
## 1232                     0–2 hours              Sometimes            Automobile
## 1233                     0–2 hours              Sometimes            Automobile
## 1234                     0–2 hours                     no Public_Transportation
## 1235                     3–5 hours              Sometimes            Automobile
## 1236             More than 5 hours                     no Public_Transportation
## 1237             More than 5 hours                     no Public_Transportation
## 1238                     0–2 hours             Frequently            Automobile
## 1239                     3–5 hours                     no Public_Transportation
## 1240                     0–2 hours                     no Public_Transportation
## 1241             More than 5 hours                     no Public_Transportation
## 1242                     0–2 hours              Sometimes            Automobile
## 1243                     0–2 hours              Sometimes            Automobile
## 1244                     3–5 hours              Sometimes            Automobile
## 1245                     0–2 hours                     no Public_Transportation
## 1246                     0–2 hours                     no Public_Transportation
## 1247                     3–5 hours                     no Public_Transportation
## 1248                     0–2 hours                     no Public_Transportation
## 1249                     3–5 hours              Sometimes Public_Transportation
## 1250             More than 5 hours              Sometimes Public_Transportation
## 1251                     3–5 hours              Sometimes Public_Transportation
## 1252                     3–5 hours              Sometimes Public_Transportation
## 1253                     3–5 hours              Sometimes Public_Transportation
## 1254                     3–5 hours              Sometimes Public_Transportation
## 1255                     0–2 hours                     no Public_Transportation
## 1256                     3–5 hours                     no Public_Transportation
## 1257             More than 5 hours                     no Public_Transportation
## 1258                     3–5 hours                     no Public_Transportation
## 1259             More than 5 hours              Sometimes Public_Transportation
## 1260                     0–2 hours              Sometimes Public_Transportation
## 1261                     0–2 hours              Sometimes Public_Transportation
## 1262                     3–5 hours              Sometimes Public_Transportation
## 1263                     3–5 hours              Sometimes Public_Transportation
## 1264                     0–2 hours              Sometimes            Automobile
## 1265                     0–2 hours              Sometimes            Automobile
## 1266                     0–2 hours                     no Public_Transportation
## 1267                     0–2 hours              Sometimes            Automobile
## 1268                     0–2 hours              Sometimes            Automobile
## 1269                     3–5 hours              Sometimes Public_Transportation
## 1270                     0–2 hours              Sometimes Public_Transportation
## 1271             More than 5 hours              Sometimes            Automobile
## 1272                     0–2 hours                     no Public_Transportation
## 1273                     0–2 hours              Sometimes            Automobile
## 1274                     0–2 hours              Sometimes            Automobile
## 1275                     0–2 hours                     no Public_Transportation
## 1276             More than 5 hours                     no Public_Transportation
## 1277             More than 5 hours                     no Public_Transportation
## 1278                     3–5 hours                     no Public_Transportation
## 1279                     0–2 hours                     no Public_Transportation
## 1280             More than 5 hours              Sometimes Public_Transportation
## 1281                     3–5 hours              Sometimes Public_Transportation
## 1282                     0–2 hours             Frequently            Automobile
## 1283                     3–5 hours             Frequently            Automobile
## 1284                     0–2 hours                     no Public_Transportation
## 1285                     0–2 hours                     no Public_Transportation
## 1286                     0–2 hours                     no            Automobile
## 1287                     0–2 hours                     no            Automobile
## 1288             More than 5 hours              Sometimes Public_Transportation
## 1289                     3–5 hours              Sometimes Public_Transportation
## 1290                     3–5 hours                     no Public_Transportation
## 1291                     3–5 hours                     no Public_Transportation
## 1292                     3–5 hours                     no Public_Transportation
## 1293                     3–5 hours                     no Public_Transportation
## 1294                     0–2 hours                     no Public_Transportation
## 1295                     3–5 hours                     no Public_Transportation
## 1296                     0–2 hours              Sometimes            Automobile
## 1297                     0–2 hours              Sometimes            Automobile
## 1298             More than 5 hours                     no Public_Transportation
## 1299             More than 5 hours                     no Public_Transportation
## 1300                     3–5 hours                     no Public_Transportation
## 1301                     3–5 hours                     no Public_Transportation
## 1302                     3–5 hours                     no Public_Transportation
## 1303                     3–5 hours                     no Public_Transportation
## 1304             More than 5 hours              Sometimes            Automobile
## 1305                     0–2 hours              Sometimes            Automobile
## 1306                     0–2 hours                     no            Automobile
## 1307                     0–2 hours                     no            Automobile
## 1308                     0–2 hours                     no Public_Transportation
## 1309                     3–5 hours                     no Public_Transportation
## 1310                     0–2 hours              Sometimes            Automobile
## 1311                     0–2 hours              Sometimes            Automobile
## 1312                     0–2 hours              Sometimes            Automobile
## 1313                     0–2 hours              Sometimes            Automobile
## 1314                     0–2 hours                     no Public_Transportation
## 1315                     3–5 hours                     no Public_Transportation
## 1316                     0–2 hours              Sometimes            Automobile
## 1317                     3–5 hours              Sometimes            Automobile
## 1318                     3–5 hours                     no Public_Transportation
## 1319             More than 5 hours                     no Public_Transportation
## 1320                     3–5 hours              Sometimes            Automobile
## 1321             More than 5 hours              Sometimes            Automobile
## 1322                     0–2 hours                     no Public_Transportation
## 1323                     3–5 hours                     no Public_Transportation
## 1324             More than 5 hours              Sometimes Public_Transportation
## 1325             More than 5 hours              Sometimes Public_Transportation
## 1326                     0–2 hours              Sometimes            Automobile
## 1327                     0–2 hours              Sometimes            Automobile
## 1328                     0–2 hours              Sometimes            Automobile
## 1329                     0–2 hours              Sometimes            Automobile
## 1330                     0–2 hours                     no Public_Transportation
## 1331                     0–2 hours                     no Public_Transportation
## 1332                     3–5 hours                     no Public_Transportation
## 1333                     3–5 hours                     no Public_Transportation
## 1334                     0–2 hours                     no Public_Transportation
## 1335                     0–2 hours                     no Public_Transportation
## 1336             More than 5 hours              Sometimes Public_Transportation
## 1337                     3–5 hours              Sometimes Public_Transportation
## 1338                     3–5 hours              Sometimes Public_Transportation
## 1339                     0–2 hours              Sometimes Public_Transportation
## 1340                     3–5 hours              Sometimes Public_Transportation
## 1341                     3–5 hours              Sometimes Public_Transportation
## 1342                     0–2 hours              Sometimes Public_Transportation
## 1343                     0–2 hours              Sometimes Public_Transportation
## 1344                     3–5 hours                     no Public_Transportation
## 1345             More than 5 hours                     no Public_Transportation
## 1346             More than 5 hours                     no Public_Transportation
## 1347                     0–2 hours                     no Public_Transportation
## 1348                     0–2 hours              Sometimes Public_Transportation
## 1349                     0–2 hours              Sometimes Public_Transportation
## 1350                     3–5 hours              Sometimes Public_Transportation
## 1351                     3–5 hours              Sometimes Public_Transportation
## 1352                     0–2 hours              Sometimes            Automobile
## 1353                     0–2 hours              Sometimes            Automobile
## 1354                     3–5 hours                     no Public_Transportation
## 1355                     0–2 hours                     no Public_Transportation
## 1356                     0–2 hours              Sometimes            Automobile
## 1357                     0–2 hours              Sometimes            Automobile
## 1358                     0–2 hours                     no Public_Transportation
## 1359                     0–2 hours                     no Public_Transportation
## 1360                     0–2 hours              Sometimes            Automobile
## 1361                     3–5 hours              Sometimes            Automobile
## 1362                     0–2 hours              Sometimes Public_Transportation
## 1363                     3–5 hours              Sometimes Public_Transportation
## 1364                     0–2 hours              Sometimes            Automobile
## 1365                     0–2 hours              Sometimes            Automobile
## 1366                     3–5 hours                     no Public_Transportation
## 1367                     0–2 hours                     no Public_Transportation
## 1368             More than 5 hours                     no Public_Transportation
## 1369             More than 5 hours                     no Public_Transportation
## 1370                     3–5 hours                     no Public_Transportation
## 1371                     3–5 hours                     no Public_Transportation
## 1372                     0–2 hours                     no Public_Transportation
## 1373                     0–2 hours                     no Public_Transportation
## 1374             More than 5 hours              Sometimes Public_Transportation
## 1375             More than 5 hours              Sometimes Public_Transportation
## 1376             More than 5 hours              Sometimes Public_Transportation
## 1377             More than 5 hours              Sometimes Public_Transportation
## 1378                     3–5 hours              Sometimes            Automobile
## 1379                     3–5 hours              Sometimes            Automobile
## 1380                     3–5 hours             Frequently            Automobile
## 1381                     3–5 hours             Frequently            Automobile
## 1382                     0–2 hours              Sometimes            Automobile
## 1383                     0–2 hours              Sometimes            Automobile
## 1384                     3–5 hours                     no Public_Transportation
## 1385                     0–2 hours                     no Public_Transportation
## 1386                     0–2 hours                     no            Automobile
## 1387                     0–2 hours                     no            Automobile
## 1388                     0–2 hours                     no            Automobile
## 1389                     0–2 hours                     no            Automobile
## 1390                     3–5 hours              Sometimes Public_Transportation
## 1391             More than 5 hours              Sometimes Public_Transportation
## 1392             More than 5 hours              Sometimes Public_Transportation
## 1393                     0–2 hours              Sometimes Public_Transportation
## 1394             More than 5 hours                     no Public_Transportation
## 1395             More than 5 hours                     no Public_Transportation
## 1396                     3–5 hours                     no Public_Transportation
## 1397                     3–5 hours                     no Public_Transportation
## 1398                     3–5 hours                     no Public_Transportation
## 1399                     3–5 hours                     no Public_Transportation
## 1400                     0–2 hours                     no Public_Transportation
## 1401                     0–2 hours                     no Public_Transportation
## 1402                     0–2 hours              Sometimes            Automobile
## 1403                     0–2 hours              Sometimes            Automobile
## 1404                     3–5 hours                     no Public_Transportation
## 1405                     0–2 hours                     no Public_Transportation
## 1406             More than 5 hours                     no Public_Transportation
## 1407             More than 5 hours                     no Public_Transportation
## 1408             More than 5 hours                     no Public_Transportation
## 1409                     3–5 hours                     no Public_Transportation
## 1410                     3–5 hours                     no Public_Transportation
## 1411                     3–5 hours                     no Public_Transportation
## 1412                     3–5 hours              Sometimes Public_Transportation
## 1413                     0–2 hours              Sometimes Public_Transportation
## 1414                     0–2 hours              Sometimes            Automobile
## 1415                     0–2 hours              Sometimes            Automobile
## 1416                     3–5 hours                     no            Automobile
## 1417                     3–5 hours                     no            Automobile
## 1418                     0–2 hours              Sometimes            Automobile
## 1419                     0–2 hours              Sometimes            Automobile
## 1420                     0–2 hours              Sometimes            Automobile
## 1421                     0–2 hours              Sometimes            Automobile
## 1422                     3–5 hours                     no Public_Transportation
## 1423                     3–5 hours                     no Public_Transportation
## 1424                     3–5 hours             Frequently            Automobile
## 1425                     3–5 hours             Frequently            Automobile
## 1426                     3–5 hours                     no Public_Transportation
## 1427             More than 5 hours                     no Public_Transportation
## 1428             More than 5 hours                     no Public_Transportation
## 1429                     3–5 hours                     no Public_Transportation
## 1430                     0–2 hours              Sometimes            Automobile
## 1431                     0–2 hours              Sometimes            Automobile
## 1432                     0–2 hours                     no Public_Transportation
## 1433                     3–5 hours                     no Public_Transportation
## 1434                     3–5 hours                     no Public_Transportation
## 1435                     0–2 hours                     no Public_Transportation
## 1436             More than 5 hours              Sometimes Public_Transportation
## 1437                     0–2 hours              Sometimes Public_Transportation
## 1438                     0–2 hours              Sometimes            Automobile
## 1439                     0–2 hours              Sometimes            Automobile
## 1440                     0–2 hours              Sometimes            Automobile
## 1441                     0–2 hours              Sometimes            Automobile
## 1442                     3–5 hours              Sometimes            Automobile
## 1443                     0–2 hours              Sometimes            Automobile
## 1444                     0–2 hours                     no Public_Transportation
## 1445                     0–2 hours                     no Public_Transportation
## 1446                     0–2 hours                     no Public_Transportation
## 1447                     0–2 hours                     no Public_Transportation
## 1448                     3–5 hours                     no Public_Transportation
## 1449                     3–5 hours                     no Public_Transportation
## 1450                     0–2 hours                     no Public_Transportation
## 1451                     0–2 hours                     no Public_Transportation
## 1452                     3–5 hours              Sometimes Public_Transportation
## 1453                     0–2 hours              Sometimes Public_Transportation
## 1454                     3–5 hours              Sometimes Public_Transportation
## 1455             More than 5 hours              Sometimes Public_Transportation
## 1456                     0–2 hours              Sometimes Public_Transportation
## 1457                     3–5 hours              Sometimes Public_Transportation
## 1458                     3–5 hours              Sometimes Public_Transportation
## 1459                     3–5 hours              Sometimes Public_Transportation
## 1460                     0–2 hours              Sometimes Public_Transportation
## 1461                     0–2 hours              Sometimes Public_Transportation
## 1462                     3–5 hours              Sometimes Public_Transportation
## 1463                     3–5 hours              Sometimes Public_Transportation
## 1464                     0–2 hours              Sometimes Public_Transportation
## 1465                     0–2 hours              Sometimes Public_Transportation
## 1466                     3–5 hours              Sometimes Public_Transportation
## 1467                     0–2 hours              Sometimes Public_Transportation
## 1468             More than 5 hours                     no Public_Transportation
## 1469                     3–5 hours                     no Public_Transportation
## 1470                     3–5 hours                     no Public_Transportation
## 1471             More than 5 hours                     no Public_Transportation
## 1472                     3–5 hours              Sometimes Public_Transportation
## 1473             More than 5 hours              Sometimes Public_Transportation
## 1474                     0–2 hours                     no Public_Transportation
## 1475                     3–5 hours                     no Public_Transportation
## 1476                     0–2 hours              Sometimes Public_Transportation
## 1477                     0–2 hours              Sometimes Public_Transportation
## 1478                     3–5 hours              Sometimes Public_Transportation
## 1479                     3–5 hours              Sometimes Public_Transportation
## 1480                     3–5 hours              Sometimes Public_Transportation
## 1481             More than 5 hours              Sometimes Public_Transportation
## 1482                     0–2 hours              Sometimes            Automobile
## 1483                     0–2 hours              Sometimes            Automobile
## 1484                     0–2 hours              Sometimes            Automobile
## 1485                     0–2 hours              Sometimes            Automobile
## 1486                     0–2 hours                     no Public_Transportation
## 1487                     3–5 hours                     no Public_Transportation
## 1488                     0–2 hours              Sometimes            Automobile
## 1489                     0–2 hours              Sometimes            Automobile
## 1490                     0–2 hours              Sometimes            Automobile
## 1491                     0–2 hours              Sometimes            Automobile
## 1492                     3–5 hours                     no Public_Transportation
## 1493                     3–5 hours                     no Public_Transportation
## 1494                     3–5 hours                     no Public_Transportation
## 1495                     3–5 hours                     no Public_Transportation
## 1496             More than 5 hours              Sometimes            Automobile
## 1497             More than 5 hours              Sometimes            Automobile
## 1498                     0–2 hours                     no Public_Transportation
## 1499                     0–2 hours                     no Public_Transportation
## 1500                     0–2 hours                     no            Automobile
## 1501                     3–5 hours                     no            Automobile
## 1502                     0–2 hours              Sometimes            Automobile
## 1503                     0–2 hours              Sometimes            Automobile
## 1504                     0–2 hours                     no Public_Transportation
## 1505                     0–2 hours                     no Public_Transportation
## 1506                     3–5 hours                     no Public_Transportation
## 1507                     3–5 hours                     no Public_Transportation
## 1508             More than 5 hours                     no Public_Transportation
## 1509             More than 5 hours                     no Public_Transportation
## 1510                     3–5 hours                     no Public_Transportation
## 1511                     3–5 hours                     no Public_Transportation
## 1512                     0–2 hours                     no Public_Transportation
## 1513                     0–2 hours                     no Public_Transportation
## 1514                     3–5 hours                     no            Automobile
## 1515                     0–2 hours                     no            Automobile
## 1516                     0–2 hours                     no Public_Transportation
## 1517                     0–2 hours                     no Public_Transportation
## 1518                     0–2 hours              Sometimes Public_Transportation
## 1519                     0–2 hours              Sometimes Public_Transportation
## 1520                     0–2 hours              Sometimes            Automobile
## 1521                     0–2 hours              Sometimes            Automobile
## 1522             More than 5 hours              Sometimes Public_Transportation
## 1523                     0–2 hours              Sometimes Public_Transportation
## 1524                     3–5 hours              Sometimes Public_Transportation
## 1525                     0–2 hours              Sometimes Public_Transportation
## 1526                     3–5 hours              Sometimes            Automobile
## 1527             More than 5 hours              Sometimes            Automobile
## 1528                     0–2 hours              Sometimes Public_Transportation
## 1529                     3–5 hours              Sometimes Public_Transportation
## 1530                     0–2 hours              Sometimes            Automobile
## 1531                     0–2 hours              Sometimes            Automobile
## 1532                     0–2 hours              Sometimes Public_Transportation
## 1533                     0–2 hours              Sometimes Public_Transportation
## 1534                     3–5 hours                     no Public_Transportation
## 1535                     3–5 hours                     no Public_Transportation
## 1536                     3–5 hours              Sometimes            Automobile
## 1537                     0–2 hours              Sometimes            Automobile
## 1538                     0–2 hours                     no Public_Transportation
## 1539                     0–2 hours                     no Public_Transportation
## 1540                     3–5 hours              Sometimes Public_Transportation
## 1541                     0–2 hours              Sometimes Public_Transportation
## 1542                     0–2 hours              Sometimes            Automobile
## 1543                     3–5 hours              Sometimes            Automobile
## 1544                     3–5 hours              Sometimes Public_Transportation
## 1545                     3–5 hours              Sometimes Public_Transportation
## 1546                     3–5 hours              Sometimes Public_Transportation
## 1547                     0–2 hours              Sometimes Public_Transportation
## 1548                     3–5 hours              Sometimes            Automobile
## 1549             More than 5 hours              Sometimes            Automobile
## 1550                     3–5 hours              Sometimes Public_Transportation
## 1551                     3–5 hours              Sometimes Public_Transportation
## 1552                     0–2 hours                     no            Automobile
## 1553                     0–2 hours                     no            Automobile
## 1554                     0–2 hours              Sometimes Public_Transportation
## 1555                     0–2 hours              Sometimes Public_Transportation
## 1556                     3–5 hours                     no Public_Transportation
## 1557             More than 5 hours                     no Public_Transportation
## 1558                     3–5 hours              Sometimes            Automobile
## 1559                     3–5 hours              Sometimes            Automobile
## 1560                     0–2 hours              Sometimes Public_Transportation
## 1561                     0–2 hours              Sometimes Public_Transportation
## 1562                     0–2 hours                     no            Automobile
## 1563                     0–2 hours                     no            Automobile
## 1564                     0–2 hours                     no Public_Transportation
## 1565                     3–5 hours                     no Public_Transportation
## 1566                     0–2 hours              Sometimes Public_Transportation
## 1567                     0–2 hours              Sometimes Public_Transportation
## 1568                     0–2 hours              Sometimes            Automobile
## 1569             More than 5 hours              Sometimes            Automobile
## 1570                     0–2 hours              Sometimes Public_Transportation
## 1571                     0–2 hours              Sometimes Public_Transportation
## 1572                     0–2 hours              Sometimes            Automobile
## 1573                     3–5 hours              Sometimes            Automobile
## 1574                     0–2 hours              Sometimes Public_Transportation
## 1575             More than 5 hours              Sometimes Public_Transportation
## 1576                     3–5 hours              Sometimes            Automobile
## 1577             More than 5 hours              Sometimes            Automobile
## 1578                     3–5 hours              Sometimes Public_Transportation
## 1579                     3–5 hours              Sometimes Public_Transportation
## 1580                     0–2 hours              Sometimes Public_Transportation
## 1581                     0–2 hours              Sometimes Public_Transportation
## 1582                     0–2 hours              Sometimes            Automobile
## 1583                     3–5 hours              Sometimes            Automobile
## 1584                     3–5 hours              Sometimes Public_Transportation
## 1585                     0–2 hours              Sometimes Public_Transportation
## 1586                     0–2 hours              Sometimes Public_Transportation
## 1587                     3–5 hours              Sometimes Public_Transportation
## 1588                     0–2 hours              Sometimes Public_Transportation
## 1589                     0–2 hours              Sometimes Public_Transportation
## 1590                     0–2 hours              Sometimes            Automobile
## 1591                     0–2 hours              Sometimes            Automobile
## 1592                     3–5 hours                     no Public_Transportation
## 1593                     0–2 hours                     no Public_Transportation
## 1594                     0–2 hours              Sometimes Public_Transportation
## 1595                     0–2 hours              Sometimes Public_Transportation
## 1596                     0–2 hours              Sometimes Public_Transportation
## 1597                     3–5 hours              Sometimes Public_Transportation
## 1598                     3–5 hours                     no Public_Transportation
## 1599                     3–5 hours                     no Public_Transportation
## 1600                     3–5 hours                     no Public_Transportation
## 1601                     3–5 hours                     no Public_Transportation
## 1602                     0–2 hours              Sometimes            Automobile
## 1603                     3–5 hours              Sometimes            Automobile
## 1604                     3–5 hours                     no Public_Transportation
## 1605                     0–2 hours                     no Public_Transportation
## 1606                     0–2 hours              Sometimes Public_Transportation
## 1607                     0–2 hours              Sometimes Public_Transportation
## 1608                     0–2 hours              Sometimes            Automobile
## 1609                     0–2 hours              Sometimes            Automobile
## 1610                     0–2 hours              Sometimes Public_Transportation
## 1611                     3–5 hours              Sometimes Public_Transportation
## 1612                     3–5 hours              Sometimes Public_Transportation
## 1613                     0–2 hours              Sometimes Public_Transportation
## 1614             More than 5 hours              Sometimes            Automobile
## 1615             More than 5 hours              Sometimes            Automobile
## 1616                     0–2 hours              Sometimes Public_Transportation
## 1617                     3–5 hours              Sometimes Public_Transportation
## 1618                     0–2 hours                     no            Automobile
## 1619                     0–2 hours                     no            Automobile
## 1620                     0–2 hours              Sometimes Public_Transportation
## 1621                     0–2 hours              Sometimes Public_Transportation
## 1622                     3–5 hours                     no Public_Transportation
## 1623                     3–5 hours                     no Public_Transportation
## 1624                     3–5 hours              Sometimes            Automobile
## 1625                     3–5 hours              Sometimes            Automobile
## 1626                     3–5 hours              Sometimes Public_Transportation
## 1627                     0–2 hours              Sometimes Public_Transportation
## 1628                     0–2 hours                     no            Automobile
## 1629                     0–2 hours                     no            Automobile
## 1630                     0–2 hours                     no Public_Transportation
## 1631                     3–5 hours                     no Public_Transportation
## 1632                     0–2 hours              Sometimes Public_Transportation
## 1633                     0–2 hours              Sometimes Public_Transportation
## 1634                     0–2 hours              Sometimes            Automobile
## 1635                     0–2 hours              Sometimes            Automobile
## 1636                     0–2 hours              Sometimes Public_Transportation
## 1637                     0–2 hours              Sometimes Public_Transportation
## 1638                     0–2 hours              Sometimes            Automobile
## 1639                     3–5 hours              Sometimes            Automobile
## 1640                     3–5 hours              Sometimes Public_Transportation
## 1641             More than 5 hours              Sometimes Public_Transportation
## 1642                     0–2 hours              Sometimes            Automobile
## 1643             More than 5 hours              Sometimes            Automobile
## 1644                     3–5 hours              Sometimes Public_Transportation
## 1645                     3–5 hours              Sometimes Public_Transportation
## 1646                     0–2 hours              Sometimes Public_Transportation
## 1647                     0–2 hours              Sometimes Public_Transportation
## 1648                     3–5 hours              Sometimes            Automobile
## 1649                     3–5 hours              Sometimes            Automobile
## 1650                     0–2 hours              Sometimes Public_Transportation
## 1651                     3–5 hours              Sometimes Public_Transportation
## 1652                     0–2 hours              Sometimes Public_Transportation
## 1653                     0–2 hours              Sometimes Public_Transportation
## 1654                     0–2 hours              Sometimes Public_Transportation
## 1655                     0–2 hours              Sometimes Public_Transportation
## 1656                     0–2 hours              Sometimes            Automobile
## 1657                     0–2 hours              Sometimes            Automobile
## 1658                     3–5 hours                     no Public_Transportation
## 1659                     3–5 hours                     no Public_Transportation
## 1660                     0–2 hours              Sometimes Public_Transportation
## 1661                     0–2 hours              Sometimes Public_Transportation
## 1662                     0–2 hours              Sometimes Public_Transportation
## 1663                     0–2 hours              Sometimes Public_Transportation
## 1664                     3–5 hours                     no Public_Transportation
## 1665                     3–5 hours                     no Public_Transportation
## 1666                     3–5 hours                     no Public_Transportation
## 1667                     3–5 hours                     no Public_Transportation
## 1668                     0–2 hours              Sometimes            Automobile
## 1669                     0–2 hours              Sometimes            Automobile
## 1670                     0–2 hours              Sometimes Public_Transportation
## 1671                     0–2 hours              Sometimes Public_Transportation
## 1672                     0–2 hours                     no Public_Transportation
## 1673                     0–2 hours                     no Public_Transportation
## 1674                     0–2 hours                     no Public_Transportation
## 1675                     0–2 hours                     no Public_Transportation
## 1676                     3–5 hours              Sometimes Public_Transportation
## 1677                     0–2 hours              Sometimes Public_Transportation
## 1678                     0–2 hours              Sometimes Public_Transportation
## 1679                     0–2 hours              Sometimes Public_Transportation
## 1680                     0–2 hours              Sometimes            Automobile
## 1681                     3–5 hours              Sometimes            Automobile
## 1682                     0–2 hours              Sometimes            Automobile
## 1683                     0–2 hours              Sometimes            Automobile
## 1684                     3–5 hours              Sometimes Public_Transportation
## 1685                     3–5 hours              Sometimes Public_Transportation
## 1686                     0–2 hours              Sometimes Public_Transportation
## 1687                     3–5 hours              Sometimes Public_Transportation
## 1688                     0–2 hours              Sometimes Public_Transportation
## 1689                     3–5 hours              Sometimes Public_Transportation
## 1690                     0–2 hours              Sometimes Public_Transportation
## 1691                     0–2 hours              Sometimes Public_Transportation
## 1692                     3–5 hours              Sometimes            Automobile
## 1693                     3–5 hours              Sometimes            Automobile
## 1694             More than 5 hours              Sometimes            Automobile
## 1695             More than 5 hours              Sometimes            Automobile
## 1696                     3–5 hours              Sometimes Public_Transportation
## 1697                     3–5 hours              Sometimes Public_Transportation
## 1698                     3–5 hours              Sometimes Public_Transportation
## 1699                     3–5 hours              Sometimes Public_Transportation
## 1700                     0–2 hours                     no            Automobile
## 1701                     0–2 hours                     no            Automobile
## 1702                     0–2 hours                     no Public_Transportation
## 1703                     0–2 hours                     no Public_Transportation
## 1704                     0–2 hours              Sometimes Public_Transportation
## 1705                     0–2 hours              Sometimes Public_Transportation
## 1706                     0–2 hours              Sometimes Public_Transportation
## 1707                     0–2 hours              Sometimes Public_Transportation
## 1708                     3–5 hours                     no Public_Transportation
## 1709             More than 5 hours                     no Public_Transportation
## 1710                     3–5 hours                     no Public_Transportation
## 1711             More than 5 hours                     no Public_Transportation
## 1712                     3–5 hours              Sometimes            Automobile
## 1713                     3–5 hours              Sometimes            Automobile
## 1714                     3–5 hours              Sometimes            Automobile
## 1715                     0–2 hours              Sometimes            Automobile
## 1716                     0–2 hours              Sometimes Public_Transportation
## 1717                     0–2 hours              Sometimes Public_Transportation
## 1718                     0–2 hours              Sometimes Public_Transportation
## 1719                     0–2 hours              Sometimes Public_Transportation
## 1720                     0–2 hours              Sometimes            Automobile
## 1721                     0–2 hours              Sometimes            Automobile
## 1722                     0–2 hours                     no            Automobile
## 1723                     0–2 hours                     no            Automobile
## 1724                     0–2 hours                     no Public_Transportation
## 1725                     0–2 hours                     no Public_Transportation
## 1726                     3–5 hours                     no Public_Transportation
## 1727                     0–2 hours                     no Public_Transportation
## 1728                     3–5 hours              Sometimes Public_Transportation
## 1729                     3–5 hours              Sometimes Public_Transportation
## 1730                     0–2 hours              Sometimes Public_Transportation
## 1731                     0–2 hours              Sometimes Public_Transportation
## 1732                     3–5 hours              Sometimes            Automobile
## 1733                     0–2 hours              Sometimes            Automobile
## 1734                     3–5 hours              Sometimes            Automobile
## 1735             More than 5 hours              Sometimes            Automobile
## 1736                     0–2 hours              Sometimes Public_Transportation
## 1737                     0–2 hours              Sometimes Public_Transportation
## 1738                     0–2 hours              Sometimes Public_Transportation
## 1739                     0–2 hours              Sometimes Public_Transportation
## 1740                     0–2 hours              Sometimes            Automobile
## 1741                     0–2 hours              Sometimes            Automobile
## 1742                     3–5 hours              Sometimes            Automobile
## 1743                     3–5 hours              Sometimes            Automobile
## 1744                     0–2 hours              Sometimes Public_Transportation
## 1745                     0–2 hours              Sometimes Public_Transportation
## 1746                     3–5 hours              Sometimes Public_Transportation
## 1747                     3–5 hours              Sometimes Public_Transportation
## 1748                     3–5 hours              Sometimes            Automobile
## 1749                     3–5 hours              Sometimes            Automobile
## 1750             More than 5 hours              Sometimes            Automobile
## 1751             More than 5 hours              Sometimes            Automobile
## 1752                     3–5 hours              Sometimes Public_Transportation
## 1753                     3–5 hours              Sometimes Public_Transportation
## 1754                     3–5 hours              Sometimes Public_Transportation
## 1755                     0–2 hours              Sometimes Public_Transportation
## 1756                     0–2 hours              Sometimes Public_Transportation
## 1757                     0–2 hours              Sometimes Public_Transportation
## 1758                     0–2 hours              Sometimes Public_Transportation
## 1759                     0–2 hours              Sometimes Public_Transportation
## 1760                     3–5 hours              Sometimes            Automobile
## 1761                     0–2 hours              Sometimes            Automobile
## 1762                     0–2 hours              Sometimes            Automobile
## 1763                     3–5 hours              Sometimes            Automobile
## 1764                     0–2 hours              Sometimes Public_Transportation
## 1765                     3–5 hours              Sometimes Public_Transportation
## 1766                     0–2 hours              Sometimes Public_Transportation
## 1767                     3–5 hours              Sometimes Public_Transportation
## 1768                     0–2 hours              Sometimes Public_Transportation
## 1769                     0–2 hours              Sometimes Public_Transportation
## 1770                     0–2 hours              Sometimes Public_Transportation
## 1771                     0–2 hours              Sometimes Public_Transportation
## 1772                     0–2 hours              Sometimes Public_Transportation
## 1773                     0–2 hours              Sometimes Public_Transportation
## 1774                     0–2 hours              Sometimes Public_Transportation
## 1775                     0–2 hours              Sometimes Public_Transportation
## 1776                     0–2 hours              Sometimes            Automobile
## 1777                     3–5 hours              Sometimes            Automobile
## 1778                     0–2 hours              Sometimes            Automobile
## 1779                     0–2 hours              Sometimes            Automobile
## 1780             More than 5 hours                     no Public_Transportation
## 1781                     3–5 hours                     no Public_Transportation
## 1782                     0–2 hours                     no Public_Transportation
## 1783                     0–2 hours                     no Public_Transportation
## 1784                     0–2 hours              Sometimes Public_Transportation
## 1785                     0–2 hours              Sometimes Public_Transportation
## 1786                     3–5 hours              Sometimes Public_Transportation
## 1787                     0–2 hours              Sometimes Public_Transportation
## 1788                     0–2 hours              Sometimes Public_Transportation
## 1789                     0–2 hours              Sometimes Public_Transportation
## 1790                     0–2 hours              Sometimes Public_Transportation
## 1791                     0–2 hours              Sometimes Public_Transportation
## 1792                     3–5 hours                     no Public_Transportation
## 1793                     3–5 hours                     no Public_Transportation
## 1794                     0–2 hours                     no Public_Transportation
## 1795                     3–5 hours                     no Public_Transportation
## 1796                     3–5 hours                     no Public_Transportation
## 1797                     3–5 hours                     no Public_Transportation
## 1798                     3–5 hours                     no Public_Transportation
## 1799                     3–5 hours                     no Public_Transportation
## 1800                     3–5 hours              Sometimes Public_Transportation
## 1801                     3–5 hours              Sometimes Public_Transportation
## 1802                     3–5 hours              Sometimes Public_Transportation
## 1803                     3–5 hours              Sometimes Public_Transportation
## 1804                     0–2 hours              Sometimes Public_Transportation
## 1805                     0–2 hours              Sometimes Public_Transportation
## 1806                     3–5 hours              Sometimes Public_Transportation
## 1807                     0–2 hours              Sometimes Public_Transportation
## 1808                     0–2 hours              Sometimes Public_Transportation
## 1809                     3–5 hours              Sometimes Public_Transportation
## 1810                     0–2 hours              Sometimes Public_Transportation
## 1811                     0–2 hours              Sometimes Public_Transportation
## 1812                     3–5 hours              Sometimes Public_Transportation
## 1813                     3–5 hours              Sometimes Public_Transportation
## 1814                     3–5 hours              Sometimes Public_Transportation
## 1815                     3–5 hours              Sometimes Public_Transportation
## 1816                     3–5 hours              Sometimes Public_Transportation
## 1817                     3–5 hours              Sometimes Public_Transportation
## 1818                     0–2 hours              Sometimes Public_Transportation
## 1819                     0–2 hours              Sometimes Public_Transportation
## 1820                     3–5 hours              Sometimes Public_Transportation
## 1821                     0–2 hours              Sometimes Public_Transportation
## 1822                     3–5 hours              Sometimes Public_Transportation
## 1823                     3–5 hours              Sometimes Public_Transportation
## 1824                     3–5 hours              Sometimes Public_Transportation
## 1825                     3–5 hours              Sometimes Public_Transportation
## 1826                     3–5 hours              Sometimes Public_Transportation
## 1827                     3–5 hours              Sometimes Public_Transportation
## 1828                     0–2 hours              Sometimes Public_Transportation
## 1829                     0–2 hours              Sometimes Public_Transportation
## 1830                     3–5 hours              Sometimes Public_Transportation
## 1831                     3–5 hours              Sometimes Public_Transportation
## 1832                     0–2 hours              Sometimes Public_Transportation
## 1833                     3–5 hours              Sometimes Public_Transportation
## 1834                     0–2 hours              Sometimes Public_Transportation
## 1835                     0–2 hours              Sometimes Public_Transportation
## 1836                     3–5 hours              Sometimes Public_Transportation
## 1837                     3–5 hours              Sometimes Public_Transportation
## 1838                     3–5 hours              Sometimes Public_Transportation
## 1839                     3–5 hours              Sometimes Public_Transportation
## 1840                     3–5 hours              Sometimes Public_Transportation
## 1841                     3–5 hours              Sometimes Public_Transportation
## 1842                     0–2 hours              Sometimes Public_Transportation
## 1843                     0–2 hours              Sometimes Public_Transportation
## 1844                     3–5 hours              Sometimes Public_Transportation
## 1845                     3–5 hours              Sometimes Public_Transportation
## 1846                     3–5 hours              Sometimes Public_Transportation
## 1847                     3–5 hours              Sometimes Public_Transportation
## 1848                     3–5 hours              Sometimes Public_Transportation
## 1849                     3–5 hours              Sometimes Public_Transportation
## 1850                     3–5 hours              Sometimes Public_Transportation
## 1851                     3–5 hours              Sometimes Public_Transportation
## 1852                     3–5 hours              Sometimes Public_Transportation
## 1853                     3–5 hours              Sometimes Public_Transportation
## 1854                     3–5 hours              Sometimes Public_Transportation
## 1855                     3–5 hours              Sometimes Public_Transportation
## 1856                     0–2 hours              Sometimes Public_Transportation
## 1857                     0–2 hours              Sometimes Public_Transportation
## 1858                     0–2 hours              Sometimes Public_Transportation
## 1859                     3–5 hours              Sometimes Public_Transportation
## 1860                     3–5 hours              Sometimes Public_Transportation
## 1861                     3–5 hours              Sometimes Public_Transportation
## 1862                     0–2 hours              Sometimes Public_Transportation
## 1863                     0–2 hours              Sometimes Public_Transportation
## 1864                     3–5 hours              Sometimes Public_Transportation
## 1865                     3–5 hours              Sometimes Public_Transportation
## 1866                     3–5 hours              Sometimes Public_Transportation
## 1867                     3–5 hours              Sometimes Public_Transportation
## 1868                     0–2 hours              Sometimes Public_Transportation
## 1869                     0–2 hours              Sometimes Public_Transportation
## 1870                     0–2 hours              Sometimes Public_Transportation
## 1871                     0–2 hours              Sometimes Public_Transportation
## 1872                     3–5 hours              Sometimes Public_Transportation
## 1873                     3–5 hours              Sometimes Public_Transportation
## 1874                     3–5 hours              Sometimes Public_Transportation
## 1875                     0–2 hours              Sometimes Public_Transportation
## 1876                     3–5 hours              Sometimes Public_Transportation
## 1877                     3–5 hours              Sometimes Public_Transportation
## 1878                     3–5 hours              Sometimes Public_Transportation
## 1879                     3–5 hours              Sometimes Public_Transportation
## 1880                     3–5 hours              Sometimes Public_Transportation
## 1881                     3–5 hours              Sometimes Public_Transportation
## 1882                     0–2 hours              Sometimes Public_Transportation
## 1883                     0–2 hours              Sometimes Public_Transportation
## 1884                     0–2 hours              Sometimes Public_Transportation
## 1885                     0–2 hours              Sometimes Public_Transportation
## 1886                     0–2 hours              Sometimes Public_Transportation
## 1887                     0–2 hours              Sometimes Public_Transportation
## 1888                     3–5 hours              Sometimes Public_Transportation
## 1889                     3–5 hours              Sometimes Public_Transportation
## 1890                     3–5 hours              Sometimes Public_Transportation
## 1891                     0–2 hours              Sometimes Public_Transportation
## 1892                     3–5 hours              Sometimes Public_Transportation
## 1893                     3–5 hours              Sometimes Public_Transportation
## 1894                     3–5 hours              Sometimes Public_Transportation
## 1895                     3–5 hours              Sometimes Public_Transportation
## 1896                     3–5 hours              Sometimes Public_Transportation
## 1897                     3–5 hours              Sometimes Public_Transportation
## 1898                     3–5 hours              Sometimes Public_Transportation
## 1899                     3–5 hours              Sometimes Public_Transportation
## 1900                     0–2 hours              Sometimes Public_Transportation
## 1901                     0–2 hours              Sometimes Public_Transportation
## 1902                     3–5 hours              Sometimes Public_Transportation
## 1903                     3–5 hours              Sometimes Public_Transportation
## 1904                     3–5 hours              Sometimes Public_Transportation
## 1905                     3–5 hours              Sometimes Public_Transportation
## 1906                     0–2 hours              Sometimes Public_Transportation
## 1907                     0–2 hours              Sometimes Public_Transportation
## 1908                     3–5 hours              Sometimes Public_Transportation
## 1909                     3–5 hours              Sometimes Public_Transportation
## 1910                     3–5 hours              Sometimes Public_Transportation
## 1911                     3–5 hours              Sometimes Public_Transportation
## 1912                     3–5 hours              Sometimes Public_Transportation
## 1913                     3–5 hours              Sometimes Public_Transportation
## 1914                     0–2 hours              Sometimes Public_Transportation
## 1915                     0–2 hours              Sometimes Public_Transportation
## 1916                     3–5 hours              Sometimes Public_Transportation
## 1917                     0–2 hours              Sometimes Public_Transportation
## 1918                     3–5 hours              Sometimes Public_Transportation
## 1919                     3–5 hours              Sometimes Public_Transportation
## 1920                     3–5 hours              Sometimes Public_Transportation
## 1921                     3–5 hours              Sometimes Public_Transportation
## 1922                     3–5 hours              Sometimes Public_Transportation
## 1923                     3–5 hours              Sometimes Public_Transportation
## 1924                     3–5 hours              Sometimes Public_Transportation
## 1925                     3–5 hours              Sometimes Public_Transportation
## 1926                     3–5 hours              Sometimes Public_Transportation
## 1927                     3–5 hours              Sometimes Public_Transportation
## 1928                     0–2 hours              Sometimes Public_Transportation
## 1929                     0–2 hours              Sometimes Public_Transportation
## 1930                     0–2 hours              Sometimes Public_Transportation
## 1931                     3–5 hours              Sometimes Public_Transportation
## 1932                     3–5 hours              Sometimes Public_Transportation
## 1933                     3–5 hours              Sometimes Public_Transportation
## 1934                     0–2 hours              Sometimes Public_Transportation
## 1935                     0–2 hours              Sometimes Public_Transportation
## 1936                     3–5 hours              Sometimes Public_Transportation
## 1937                     3–5 hours              Sometimes Public_Transportation
## 1938                     3–5 hours              Sometimes Public_Transportation
## 1939                     3–5 hours              Sometimes Public_Transportation
## 1940                     0–2 hours              Sometimes Public_Transportation
## 1941                     0–2 hours              Sometimes Public_Transportation
## 1942                     0–2 hours              Sometimes Public_Transportation
## 1943                     0–2 hours              Sometimes Public_Transportation
## 1944                     3–5 hours              Sometimes Public_Transportation
## 1945                     3–5 hours              Sometimes Public_Transportation
## 1946                     3–5 hours              Sometimes Public_Transportation
## 1947                     3–5 hours              Sometimes Public_Transportation
## 1948                     3–5 hours              Sometimes Public_Transportation
## 1949                     3–5 hours              Sometimes Public_Transportation
## 1950                     3–5 hours              Sometimes Public_Transportation
## 1951                     3–5 hours              Sometimes Public_Transportation
## 1952                     3–5 hours              Sometimes Public_Transportation
## 1953                     3–5 hours              Sometimes Public_Transportation
## 1954                     0–2 hours              Sometimes Public_Transportation
## 1955                     0–2 hours              Sometimes Public_Transportation
## 1956                     0–2 hours              Sometimes Public_Transportation
## 1957                     0–2 hours              Sometimes Public_Transportation
## 1958                     0–2 hours              Sometimes Public_Transportation
## 1959                     0–2 hours              Sometimes Public_Transportation
## 1960                     3–5 hours              Sometimes Public_Transportation
## 1961                     3–5 hours              Sometimes Public_Transportation
## 1962                     3–5 hours              Sometimes Public_Transportation
## 1963                     0–2 hours              Sometimes Public_Transportation
## 1964                     3–5 hours              Sometimes Public_Transportation
## 1965                     3–5 hours              Sometimes Public_Transportation
## 1966                     3–5 hours              Sometimes Public_Transportation
## 1967                     3–5 hours              Sometimes Public_Transportation
## 1968                     3–5 hours              Sometimes Public_Transportation
## 1969                     3–5 hours              Sometimes Public_Transportation
## 1970                     3–5 hours              Sometimes Public_Transportation
## 1971                     3–5 hours              Sometimes Public_Transportation
## 1972                     3–5 hours              Sometimes Public_Transportation
## 1973                     3–5 hours              Sometimes Public_Transportation
## 1974                     3–5 hours              Sometimes Public_Transportation
## 1975                     3–5 hours              Sometimes Public_Transportation
## 1976                     0–2 hours              Sometimes Public_Transportation
## 1977                     0–2 hours              Sometimes Public_Transportation
## 1978                     0–2 hours              Sometimes Public_Transportation
## 1979                     0–2 hours              Sometimes Public_Transportation
## 1980                     3–5 hours              Sometimes Public_Transportation
## 1981                     3–5 hours              Sometimes Public_Transportation
## 1982                     3–5 hours              Sometimes Public_Transportation
## 1983                     3–5 hours              Sometimes Public_Transportation
## 1984                     3–5 hours              Sometimes Public_Transportation
## 1985                     0–2 hours              Sometimes Public_Transportation
## 1986                     3–5 hours              Sometimes Public_Transportation
## 1987                     3–5 hours              Sometimes Public_Transportation
## 1988                     0–2 hours              Sometimes Public_Transportation
## 1989                     0–2 hours              Sometimes Public_Transportation
## 1990                     0–2 hours              Sometimes Public_Transportation
## 1991                     0–2 hours              Sometimes Public_Transportation
## 1992                     3–5 hours              Sometimes Public_Transportation
## 1993                     3–5 hours              Sometimes Public_Transportation
## 1994                     3–5 hours              Sometimes Public_Transportation
## 1995                     3–5 hours              Sometimes Public_Transportation
## 1996                     3–5 hours              Sometimes Public_Transportation
## 1997                     3–5 hours              Sometimes Public_Transportation
## 1998                     3–5 hours              Sometimes Public_Transportation
## 1999                     3–5 hours              Sometimes Public_Transportation
## 2000                     3–5 hours              Sometimes Public_Transportation
## 2001                     3–5 hours              Sometimes Public_Transportation
## 2002                     3–5 hours              Sometimes Public_Transportation
## 2003                     3–5 hours              Sometimes Public_Transportation
## 2004                     0–2 hours              Sometimes Public_Transportation
## 2005                     0–2 hours              Sometimes Public_Transportation
## 2006                     0–2 hours              Sometimes Public_Transportation
## 2007                     0–2 hours              Sometimes Public_Transportation
## 2008                     3–5 hours              Sometimes Public_Transportation
## 2009                     0–2 hours              Sometimes Public_Transportation
## 2010                     3–5 hours              Sometimes Public_Transportation
## 2011                     3–5 hours              Sometimes Public_Transportation
## 2012                     3–5 hours              Sometimes Public_Transportation
## 2013                     3–5 hours              Sometimes Public_Transportation
## 2014                     3–5 hours              Sometimes Public_Transportation
## 2015                     3–5 hours              Sometimes Public_Transportation
## 2016                     3–5 hours              Sometimes Public_Transportation
## 2017                     3–5 hours              Sometimes Public_Transportation
## 2018                     3–5 hours              Sometimes Public_Transportation
## 2019                     3–5 hours              Sometimes Public_Transportation
## 2020                     3–5 hours              Sometimes Public_Transportation
## 2021                     3–5 hours              Sometimes Public_Transportation
## 2022                     0–2 hours              Sometimes Public_Transportation
## 2023                     3–5 hours              Sometimes Public_Transportation
## 2024                     3–5 hours              Sometimes Public_Transportation
## 2025                     3–5 hours              Sometimes Public_Transportation
## 2026                     3–5 hours              Sometimes Public_Transportation
## 2027                     3–5 hours              Sometimes Public_Transportation
## 2028                     3–5 hours              Sometimes Public_Transportation
## 2029                     3–5 hours              Sometimes Public_Transportation
## 2030                     3–5 hours              Sometimes Public_Transportation
## 2031                     3–5 hours              Sometimes Public_Transportation
## 2032                     0–2 hours              Sometimes Public_Transportation
## 2033                     0–2 hours              Sometimes Public_Transportation
## 2034                     0–2 hours              Sometimes Public_Transportation
## 2035                     0–2 hours              Sometimes Public_Transportation
## 2036                     0–2 hours              Sometimes Public_Transportation
## 2037                     3–5 hours              Sometimes Public_Transportation
## 2038                     3–5 hours              Sometimes Public_Transportation
## 2039                     3–5 hours              Sometimes Public_Transportation
## 2040                     3–5 hours              Sometimes Public_Transportation
## 2041                     3–5 hours              Sometimes Public_Transportation
## 2042                     3–5 hours              Sometimes Public_Transportation
## 2043                     3–5 hours              Sometimes Public_Transportation
## 2044                     0–2 hours              Sometimes Public_Transportation
## 2045                     0–2 hours              Sometimes Public_Transportation
## 2046                     0–2 hours              Sometimes Public_Transportation
## 2047                     0–2 hours              Sometimes Public_Transportation
## 2048                     3–5 hours              Sometimes Public_Transportation
## 2049                     3–5 hours              Sometimes Public_Transportation
## 2050                     3–5 hours              Sometimes Public_Transportation
## 2051                     3–5 hours              Sometimes Public_Transportation
## 2052                     3–5 hours              Sometimes Public_Transportation
## 2053                     3–5 hours              Sometimes Public_Transportation
## 2054                     3–5 hours              Sometimes Public_Transportation
## 2055                     3–5 hours              Sometimes Public_Transportation
## 2056                     0–2 hours              Sometimes Public_Transportation
## 2057                     0–2 hours              Sometimes Public_Transportation
## 2058                     0–2 hours              Sometimes Public_Transportation
## 2059                     0–2 hours              Sometimes Public_Transportation
## 2060                     0–2 hours              Sometimes Public_Transportation
## 2061                     0–2 hours              Sometimes Public_Transportation
## 2062                     0–2 hours              Sometimes Public_Transportation
## 2063                     0–2 hours              Sometimes Public_Transportation
## 2064                     3–5 hours              Sometimes Public_Transportation
## 2065                     3–5 hours              Sometimes Public_Transportation
## 2066                     3–5 hours              Sometimes Public_Transportation
## 2067                     3–5 hours              Sometimes Public_Transportation
## 2068                     3–5 hours              Sometimes Public_Transportation
## 2069                     3–5 hours              Sometimes Public_Transportation
## 2070                     3–5 hours              Sometimes Public_Transportation
## 2071                     0–2 hours              Sometimes Public_Transportation
## 2072                     3–5 hours              Sometimes Public_Transportation
## 2073                     3–5 hours              Sometimes Public_Transportation
## 2074                     3–5 hours              Sometimes Public_Transportation
## 2075                     3–5 hours              Sometimes Public_Transportation
## 2076                     3–5 hours              Sometimes Public_Transportation
## 2077                     3–5 hours              Sometimes Public_Transportation
## 2078                     3–5 hours              Sometimes Public_Transportation
## 2079                     3–5 hours              Sometimes Public_Transportation
## 2080                     3–5 hours              Sometimes Public_Transportation
## 2081                     3–5 hours              Sometimes Public_Transportation
## 2082                     3–5 hours              Sometimes Public_Transportation
## 2083                     3–5 hours              Sometimes Public_Transportation
## 2084                     0–2 hours              Sometimes Public_Transportation
## 2085                     0–2 hours              Sometimes Public_Transportation
## 2086                     0–2 hours              Sometimes Public_Transportation
## 2087                     0–2 hours              Sometimes Public_Transportation
## 2088                     0–2 hours              Sometimes Public_Transportation
## 2089                     0–2 hours              Sometimes Public_Transportation
## 2090                     0–2 hours              Sometimes Public_Transportation
## 2091                     0–2 hours              Sometimes Public_Transportation
## 2092                     0–2 hours              Sometimes Public_Transportation
## 2093                     0–2 hours              Sometimes Public_Transportation
## 2094                     0–2 hours              Sometimes Public_Transportation
## 2095                     0–2 hours              Sometimes Public_Transportation
## 2096                     3–5 hours              Sometimes Public_Transportation
## 2097                     3–5 hours              Sometimes Public_Transportation
## 2098                     3–5 hours              Sometimes Public_Transportation
## 2099                     3–5 hours              Sometimes Public_Transportation
## 2100                     0–2 hours              Sometimes Public_Transportation
## 2101                     0–2 hours              Sometimes Public_Transportation
## 2102                     0–2 hours              Sometimes Public_Transportation
## 2103                     0–2 hours              Sometimes Public_Transportation
## 2104                     3–5 hours              Sometimes Public_Transportation
## 2105                     3–5 hours              Sometimes Public_Transportation
## 2106                     3–5 hours              Sometimes Public_Transportation
## 2107                     3–5 hours              Sometimes Public_Transportation
## 2108                     3–5 hours              Sometimes Public_Transportation
## 2109                     3–5 hours              Sometimes Public_Transportation
## 2110                     3–5 hours              Sometimes Public_Transportation
## 2111                     3–5 hours              Sometimes Public_Transportation
##                  Obesity
## 1          Normal_Weight
## 2          Normal_Weight
## 3          Normal_Weight
## 4     Overweight_Level_I
## 5    Overweight_Level_II
## 6          Normal_Weight
## 7          Normal_Weight
## 8          Normal_Weight
## 9          Normal_Weight
## 10         Normal_Weight
## 11        Obesity_Type_I
## 12   Overweight_Level_II
## 13         Normal_Weight
## 14        Obesity_Type_I
## 15         Normal_Weight
## 16         Normal_Weight
## 17   Overweight_Level_II
## 18        Obesity_Type_I
## 19   Overweight_Level_II
## 20    Overweight_Level_I
## 21   Overweight_Level_II
## 22        Obesity_Type_I
## 23         Normal_Weight
## 24        Obesity_Type_I
## 25         Normal_Weight
## 26         Normal_Weight
## 27         Normal_Weight
## 28         Normal_Weight
## 29         Normal_Weight
## 30         Normal_Weight
## 31    Overweight_Level_I
## 32   Overweight_Level_II
## 33         Normal_Weight
## 34   Overweight_Level_II
## 35         Normal_Weight
## 36   Overweight_Level_II
## 37         Normal_Weight
## 38         Normal_Weight
## 39         Normal_Weight
## 40   Overweight_Level_II
## 41    Overweight_Level_I
## 42         Normal_Weight
## 43         Normal_Weight
## 44         Normal_Weight
## 45         Normal_Weight
## 46   Overweight_Level_II
## 47         Normal_Weight
## 48         Normal_Weight
## 49         Normal_Weight
## 50         Normal_Weight
## 51         Normal_Weight
## 52         Normal_Weight
## 53         Normal_Weight
## 54         Normal_Weight
## 55         Normal_Weight
## 56         Normal_Weight
## 57         Normal_Weight
## 58         Normal_Weight
## 59         Normal_Weight
## 60   Insufficient_Weight
## 61         Normal_Weight
## 62         Normal_Weight
## 63         Normal_Weight
## 64         Normal_Weight
## 65         Normal_Weight
## 66    Overweight_Level_I
## 67   Overweight_Level_II
## 68        Obesity_Type_I
## 69       Obesity_Type_II
## 70         Normal_Weight
## 71   Overweight_Level_II
## 72   Insufficient_Weight
## 73         Normal_Weight
## 74         Normal_Weight
## 75   Overweight_Level_II
## 76   Insufficient_Weight
## 77   Insufficient_Weight
## 78   Overweight_Level_II
## 79        Obesity_Type_I
## 80         Normal_Weight
## 81         Normal_Weight
## 82   Overweight_Level_II
## 83        Obesity_Type_I
## 84   Insufficient_Weight
## 85   Overweight_Level_II
## 86         Normal_Weight
## 87         Normal_Weight
## 88    Overweight_Level_I
## 89         Normal_Weight
## 90   Overweight_Level_II
## 91       Obesity_Type_II
## 92         Normal_Weight
## 93    Overweight_Level_I
## 94         Normal_Weight
## 95         Normal_Weight
## 96         Normal_Weight
## 97         Normal_Weight
## 98   Insufficient_Weight
## 99   Insufficient_Weight
## 100        Normal_Weight
## 101        Normal_Weight
## 102        Normal_Weight
## 103        Normal_Weight
## 104        Normal_Weight
## 105       Obesity_Type_I
## 106        Normal_Weight
## 107        Normal_Weight
## 108   Overweight_Level_I
## 109       Obesity_Type_I
## 110       Obesity_Type_I
## 111        Normal_Weight
## 112        Normal_Weight
## 113        Normal_Weight
## 114        Normal_Weight
## 115        Normal_Weight
## 116        Normal_Weight
## 117       Obesity_Type_I
## 118  Overweight_Level_II
## 119        Normal_Weight
## 120  Overweight_Level_II
## 121   Overweight_Level_I
## 122  Overweight_Level_II
## 123  Insufficient_Weight
## 124        Normal_Weight
## 125  Overweight_Level_II
## 126   Overweight_Level_I
## 127        Normal_Weight
## 128        Normal_Weight
## 129        Normal_Weight
## 130  Overweight_Level_II
## 131        Normal_Weight
## 132        Normal_Weight
## 133        Normal_Weight
## 134        Normal_Weight
## 135       Obesity_Type_I
## 136   Overweight_Level_I
## 137        Normal_Weight
## 138       Obesity_Type_I
## 139        Normal_Weight
## 140        Normal_Weight
## 141  Insufficient_Weight
## 142        Normal_Weight
## 143       Obesity_Type_I
## 144   Overweight_Level_I
## 145   Overweight_Level_I
## 146   Overweight_Level_I
## 147        Normal_Weight
## 148       Obesity_Type_I
## 149        Normal_Weight
## 150       Obesity_Type_I
## 151        Normal_Weight
## 152        Normal_Weight
## 153   Overweight_Level_I
## 154  Overweight_Level_II
## 155       Obesity_Type_I
## 156        Normal_Weight
## 157        Normal_Weight
## 158        Normal_Weight
## 159   Overweight_Level_I
## 160  Overweight_Level_II
## 161        Normal_Weight
## 162  Overweight_Level_II
## 163        Normal_Weight
## 164        Normal_Weight
## 165  Overweight_Level_II
## 166      Obesity_Type_II
## 167        Normal_Weight
## 168  Overweight_Level_II
## 169   Overweight_Level_I
## 170  Overweight_Level_II
## 171  Overweight_Level_II
## 172        Normal_Weight
## 173        Normal_Weight
## 174        Normal_Weight
## 175   Overweight_Level_I
## 176        Normal_Weight
## 177        Normal_Weight
## 178        Normal_Weight
## 179        Normal_Weight
## 180   Overweight_Level_I
## 181        Normal_Weight
## 182        Normal_Weight
## 183  Insufficient_Weight
## 184  Overweight_Level_II
## 185   Overweight_Level_I
## 186   Overweight_Level_I
## 187       Obesity_Type_I
## 188       Obesity_Type_I
## 189       Obesity_Type_I
## 190        Normal_Weight
## 191        Normal_Weight
## 192   Overweight_Level_I
## 193   Overweight_Level_I
## 194        Normal_Weight
## 195       Obesity_Type_I
## 196   Overweight_Level_I
## 197        Normal_Weight
## 198      Obesity_Type_II
## 199  Insufficient_Weight
## 200        Normal_Weight
## 201       Obesity_Type_I
## 202       Obesity_Type_I
## 203     Obesity_Type_III
## 204       Obesity_Type_I
## 205        Normal_Weight
## 206       Obesity_Type_I
## 207       Obesity_Type_I
## 208        Normal_Weight
## 209        Normal_Weight
## 210        Normal_Weight
## 211      Obesity_Type_II
## 212        Normal_Weight
## 213  Overweight_Level_II
## 214        Normal_Weight
## 215        Normal_Weight
## 216        Normal_Weight
## 217        Normal_Weight
## 218   Overweight_Level_I
## 219        Normal_Weight
## 220   Overweight_Level_I
## 221   Overweight_Level_I
## 222  Overweight_Level_II
## 223        Normal_Weight
## 224        Normal_Weight
## 225       Obesity_Type_I
## 226      Obesity_Type_II
## 227        Normal_Weight
## 228        Normal_Weight
## 229  Overweight_Level_II
## 230      Obesity_Type_II
## 231   Overweight_Level_I
## 232        Normal_Weight
## 233        Normal_Weight
## 234  Overweight_Level_II
## 235        Normal_Weight
## 236        Normal_Weight
## 237        Normal_Weight
## 238        Normal_Weight
## 239        Normal_Weight
## 240        Normal_Weight
## 241        Normal_Weight
## 242   Overweight_Level_I
## 243        Normal_Weight
## 244  Overweight_Level_II
## 245        Normal_Weight
## 246  Insufficient_Weight
## 247        Normal_Weight
## 248        Normal_Weight
## 249        Normal_Weight
## 250   Overweight_Level_I
## 251  Overweight_Level_II
## 252  Overweight_Level_II
## 253  Overweight_Level_II
## 254        Normal_Weight
## 255        Normal_Weight
## 256   Overweight_Level_I
## 257  Overweight_Level_II
## 258       Obesity_Type_I
## 259  Overweight_Level_II
## 260       Obesity_Type_I
## 261   Overweight_Level_I
## 262   Overweight_Level_I
## 263        Normal_Weight
## 264  Insufficient_Weight
## 265        Normal_Weight
## 266  Insufficient_Weight
## 267  Insufficient_Weight
## 268  Overweight_Level_II
## 269        Normal_Weight
## 270        Normal_Weight
## 271       Obesity_Type_I
## 272        Normal_Weight
## 273        Normal_Weight
## 274        Normal_Weight
## 275        Normal_Weight
## 276        Normal_Weight
## 277  Insufficient_Weight
## 278        Normal_Weight
## 279        Normal_Weight
## 280  Insufficient_Weight
## 281        Normal_Weight
## 282        Normal_Weight
## 283        Normal_Weight
## 284        Normal_Weight
## 285        Normal_Weight
## 286       Obesity_Type_I
## 287        Normal_Weight
## 288        Normal_Weight
## 289        Normal_Weight
## 290        Normal_Weight
## 291        Normal_Weight
## 292  Insufficient_Weight
## 293        Normal_Weight
## 294        Normal_Weight
## 295       Obesity_Type_I
## 296        Normal_Weight
## 297        Normal_Weight
## 298   Overweight_Level_I
## 299        Normal_Weight
## 300   Overweight_Level_I
## 301        Normal_Weight
## 302        Normal_Weight
## 303  Insufficient_Weight
## 304        Normal_Weight
## 305   Overweight_Level_I
## 306      Obesity_Type_II
## 307        Normal_Weight
## 308        Normal_Weight
## 309        Normal_Weight
## 310        Normal_Weight
## 311  Insufficient_Weight
## 312        Normal_Weight
## 313        Normal_Weight
## 314        Normal_Weight
## 315        Normal_Weight
## 316        Normal_Weight
## 317        Normal_Weight
## 318        Normal_Weight
## 319        Normal_Weight
## 320   Overweight_Level_I
## 321        Normal_Weight
## 322        Normal_Weight
## 323  Insufficient_Weight
## 324        Normal_Weight
## 325   Overweight_Level_I
## 326        Normal_Weight
## 327        Normal_Weight
## 328   Overweight_Level_I
## 329        Normal_Weight
## 330       Obesity_Type_I
## 331  Insufficient_Weight
## 332        Normal_Weight
## 333        Normal_Weight
## 334        Normal_Weight
## 335   Overweight_Level_I
## 336  Insufficient_Weight
## 337        Normal_Weight
## 338        Normal_Weight
## 339   Overweight_Level_I
## 340  Insufficient_Weight
## 341        Normal_Weight
## 342        Normal_Weight
## 343       Obesity_Type_I
## 344        Normal_Weight
## 345     Obesity_Type_III
## 346        Normal_Weight
## 347        Normal_Weight
## 348  Overweight_Level_II
## 349        Normal_Weight
## 350       Obesity_Type_I
## 351        Normal_Weight
## 352        Normal_Weight
## 353        Normal_Weight
## 354        Normal_Weight
## 355        Normal_Weight
## 356   Overweight_Level_I
## 357  Insufficient_Weight
## 358        Normal_Weight
## 359      Obesity_Type_II
## 360        Normal_Weight
## 361        Normal_Weight
## 362       Obesity_Type_I
## 363   Overweight_Level_I
## 364        Normal_Weight
## 365   Overweight_Level_I
## 366        Normal_Weight
## 367  Overweight_Level_II
## 368   Overweight_Level_I
## 369  Overweight_Level_II
## 370  Overweight_Level_II
## 371        Normal_Weight
## 372   Overweight_Level_I
## 373        Normal_Weight
## 374        Normal_Weight
## 375        Normal_Weight
## 376  Overweight_Level_II
## 377        Normal_Weight
## 378        Normal_Weight
## 379        Normal_Weight
## 380        Normal_Weight
## 381  Overweight_Level_II
## 382        Normal_Weight
## 383        Normal_Weight
## 384       Obesity_Type_I
## 385        Normal_Weight
## 386        Normal_Weight
## 387        Normal_Weight
## 388       Obesity_Type_I
## 389       Obesity_Type_I
## 390   Overweight_Level_I
## 391  Insufficient_Weight
## 392  Insufficient_Weight
## 393        Normal_Weight
## 394  Overweight_Level_II
## 395        Normal_Weight
## 396  Insufficient_Weight
## 397        Normal_Weight
## 398        Normal_Weight
## 399      Obesity_Type_II
## 400        Normal_Weight
## 401   Overweight_Level_I
## 402        Normal_Weight
## 403  Overweight_Level_II
## 404     Obesity_Type_III
## 405        Normal_Weight
## 406  Overweight_Level_II
## 407        Normal_Weight
## 408   Overweight_Level_I
## 409        Normal_Weight
## 410        Normal_Weight
## 411        Normal_Weight
## 412   Overweight_Level_I
## 413        Normal_Weight
## 414  Overweight_Level_II
## 415       Obesity_Type_I
## 416        Normal_Weight
## 417   Overweight_Level_I
## 418  Overweight_Level_II
## 419       Obesity_Type_I
## 420       Obesity_Type_I
## 421  Insufficient_Weight
## 422  Insufficient_Weight
## 423        Normal_Weight
## 424  Overweight_Level_II
## 425   Overweight_Level_I
## 426        Normal_Weight
## 427        Normal_Weight
## 428        Normal_Weight
## 429        Normal_Weight
## 430        Normal_Weight
## 431       Obesity_Type_I
## 432        Normal_Weight
## 433        Normal_Weight
## 434        Normal_Weight
## 435        Normal_Weight
## 436   Overweight_Level_I
## 437        Normal_Weight
## 438        Normal_Weight
## 439        Normal_Weight
## 440        Normal_Weight
## 441        Normal_Weight
## 442        Normal_Weight
## 443        Normal_Weight
## 444  Insufficient_Weight
## 445        Normal_Weight
## 446        Normal_Weight
## 447        Normal_Weight
## 448   Overweight_Level_I
## 449      Obesity_Type_II
## 450        Normal_Weight
## 451        Normal_Weight
## 452        Normal_Weight
## 453        Normal_Weight
## 454        Normal_Weight
## 455        Normal_Weight
## 456        Normal_Weight
## 457        Normal_Weight
## 458        Normal_Weight
## 459        Normal_Weight
## 460   Overweight_Level_I
## 461        Normal_Weight
## 462       Obesity_Type_I
## 463  Overweight_Level_II
## 464        Normal_Weight
## 465        Normal_Weight
## 466        Normal_Weight
## 467        Normal_Weight
## 468        Normal_Weight
## 469  Insufficient_Weight
## 470  Insufficient_Weight
## 471        Normal_Weight
## 472       Obesity_Type_I
## 473  Overweight_Level_II
## 474        Normal_Weight
## 475        Normal_Weight
## 476   Overweight_Level_I
## 477   Overweight_Level_I
## 478        Normal_Weight
## 479        Normal_Weight
## 480        Normal_Weight
## 481        Normal_Weight
## 482        Normal_Weight
## 483        Normal_Weight
## 484   Overweight_Level_I
## 485  Overweight_Level_II
## 486        Normal_Weight
## 487        Normal_Weight
## 488       Obesity_Type_I
## 489        Normal_Weight
## 490        Normal_Weight
## 491  Overweight_Level_II
## 492        Normal_Weight
## 493  Overweight_Level_II
## 494        Normal_Weight
## 495        Normal_Weight
## 496        Normal_Weight
## 497  Insufficient_Weight
## 498        Normal_Weight
## 499     Obesity_Type_III
## 500     Obesity_Type_III
## 501     Obesity_Type_III
## 502     Obesity_Type_III
## 503     Obesity_Type_III
## 504     Obesity_Type_III
## 505     Obesity_Type_III
## 506     Obesity_Type_III
## 507     Obesity_Type_III
## 508  Insufficient_Weight
## 509  Insufficient_Weight
## 510  Insufficient_Weight
## 511  Insufficient_Weight
## 512  Insufficient_Weight
## 513  Insufficient_Weight
## 514  Insufficient_Weight
## 515  Insufficient_Weight
## 516  Insufficient_Weight
## 517  Insufficient_Weight
## 518  Insufficient_Weight
## 519  Insufficient_Weight
## 520  Insufficient_Weight
## 521  Insufficient_Weight
## 522  Insufficient_Weight
## 523  Insufficient_Weight
## 524  Insufficient_Weight
## 525  Insufficient_Weight
## 526  Insufficient_Weight
## 527  Insufficient_Weight
## 528  Insufficient_Weight
## 529  Insufficient_Weight
## 530  Insufficient_Weight
## 531  Insufficient_Weight
## 532  Insufficient_Weight
## 533  Insufficient_Weight
## 534  Insufficient_Weight
## 535  Insufficient_Weight
## 536  Insufficient_Weight
## 537  Insufficient_Weight
## 538  Insufficient_Weight
## 539  Insufficient_Weight
## 540  Insufficient_Weight
## 541  Insufficient_Weight
## 542  Insufficient_Weight
## 543  Insufficient_Weight
## 544  Insufficient_Weight
## 545  Insufficient_Weight
## 546  Insufficient_Weight
## 547  Insufficient_Weight
## 548  Insufficient_Weight
## 549  Insufficient_Weight
## 550  Insufficient_Weight
## 551  Insufficient_Weight
## 552  Insufficient_Weight
## 553  Insufficient_Weight
## 554  Insufficient_Weight
## 555  Insufficient_Weight
## 556  Insufficient_Weight
## 557  Insufficient_Weight
## 558  Insufficient_Weight
## 559  Insufficient_Weight
## 560  Insufficient_Weight
## 561  Insufficient_Weight
## 562  Insufficient_Weight
## 563  Insufficient_Weight
## 564  Insufficient_Weight
## 565  Insufficient_Weight
## 566  Insufficient_Weight
## 567  Insufficient_Weight
## 568  Insufficient_Weight
## 569  Insufficient_Weight
## 570  Insufficient_Weight
## 571  Insufficient_Weight
## 572  Insufficient_Weight
## 573  Insufficient_Weight
## 574  Insufficient_Weight
## 575  Insufficient_Weight
## 576  Insufficient_Weight
## 577  Insufficient_Weight
## 578  Insufficient_Weight
## 579  Insufficient_Weight
## 580  Insufficient_Weight
## 581  Insufficient_Weight
## 582  Insufficient_Weight
## 583  Insufficient_Weight
## 584  Insufficient_Weight
## 585  Insufficient_Weight
## 586  Insufficient_Weight
## 587  Insufficient_Weight
## 588  Insufficient_Weight
## 589  Insufficient_Weight
## 590  Insufficient_Weight
## 591  Insufficient_Weight
## 592  Insufficient_Weight
## 593  Insufficient_Weight
## 594  Insufficient_Weight
## 595  Insufficient_Weight
## 596  Insufficient_Weight
## 597  Insufficient_Weight
## 598  Insufficient_Weight
## 599  Insufficient_Weight
## 600  Insufficient_Weight
## 601  Insufficient_Weight
## 602  Insufficient_Weight
## 603  Insufficient_Weight
## 604  Insufficient_Weight
## 605  Insufficient_Weight
## 606  Insufficient_Weight
## 607  Insufficient_Weight
## 608  Insufficient_Weight
## 609  Insufficient_Weight
## 610  Insufficient_Weight
## 611  Insufficient_Weight
## 612  Insufficient_Weight
## 613  Insufficient_Weight
## 614  Insufficient_Weight
## 615  Insufficient_Weight
## 616  Insufficient_Weight
## 617  Insufficient_Weight
## 618  Insufficient_Weight
## 619  Insufficient_Weight
## 620  Insufficient_Weight
## 621  Insufficient_Weight
## 622  Insufficient_Weight
## 623  Insufficient_Weight
## 624  Insufficient_Weight
## 625  Insufficient_Weight
## 626  Insufficient_Weight
## 627  Insufficient_Weight
## 628  Insufficient_Weight
## 629  Insufficient_Weight
## 630  Insufficient_Weight
## 631  Insufficient_Weight
## 632  Insufficient_Weight
## 633  Insufficient_Weight
## 634  Insufficient_Weight
## 635  Insufficient_Weight
## 636  Insufficient_Weight
## 637  Insufficient_Weight
## 638  Insufficient_Weight
## 639  Insufficient_Weight
## 640  Insufficient_Weight
## 641  Insufficient_Weight
## 642  Insufficient_Weight
## 643  Insufficient_Weight
## 644  Insufficient_Weight
## 645  Insufficient_Weight
## 646  Insufficient_Weight
## 647  Insufficient_Weight
## 648  Insufficient_Weight
## 649  Insufficient_Weight
## 650  Insufficient_Weight
## 651  Insufficient_Weight
## 652  Insufficient_Weight
## 653  Insufficient_Weight
## 654  Insufficient_Weight
## 655  Insufficient_Weight
## 656  Insufficient_Weight
## 657  Insufficient_Weight
## 658  Insufficient_Weight
## 659  Insufficient_Weight
## 660  Insufficient_Weight
## 661  Insufficient_Weight
## 662  Insufficient_Weight
## 663  Insufficient_Weight
## 664  Insufficient_Weight
## 665  Insufficient_Weight
## 666  Insufficient_Weight
## 667  Insufficient_Weight
## 668  Insufficient_Weight
## 669  Insufficient_Weight
## 670  Insufficient_Weight
## 671  Insufficient_Weight
## 672  Insufficient_Weight
## 673  Insufficient_Weight
## 674  Insufficient_Weight
## 675  Insufficient_Weight
## 676  Insufficient_Weight
## 677  Insufficient_Weight
## 678  Insufficient_Weight
## 679  Insufficient_Weight
## 680  Insufficient_Weight
## 681  Insufficient_Weight
## 682  Insufficient_Weight
## 683  Insufficient_Weight
## 684  Insufficient_Weight
## 685  Insufficient_Weight
## 686  Insufficient_Weight
## 687  Insufficient_Weight
## 688  Insufficient_Weight
## 689  Insufficient_Weight
## 690  Insufficient_Weight
## 691  Insufficient_Weight
## 692  Insufficient_Weight
## 693  Insufficient_Weight
## 694  Insufficient_Weight
## 695  Insufficient_Weight
## 696  Insufficient_Weight
## 697  Insufficient_Weight
## 698  Insufficient_Weight
## 699  Insufficient_Weight
## 700  Insufficient_Weight
## 701  Insufficient_Weight
## 702  Insufficient_Weight
## 703  Insufficient_Weight
## 704  Insufficient_Weight
## 705  Insufficient_Weight
## 706  Insufficient_Weight
## 707  Insufficient_Weight
## 708  Insufficient_Weight
## 709  Insufficient_Weight
## 710  Insufficient_Weight
## 711  Insufficient_Weight
## 712  Insufficient_Weight
## 713  Insufficient_Weight
## 714  Insufficient_Weight
## 715  Insufficient_Weight
## 716  Insufficient_Weight
## 717  Insufficient_Weight
## 718  Insufficient_Weight
## 719  Insufficient_Weight
## 720  Insufficient_Weight
## 721  Insufficient_Weight
## 722  Insufficient_Weight
## 723  Insufficient_Weight
## 724  Insufficient_Weight
## 725  Insufficient_Weight
## 726  Insufficient_Weight
## 727  Insufficient_Weight
## 728  Insufficient_Weight
## 729  Insufficient_Weight
## 730  Insufficient_Weight
## 731  Insufficient_Weight
## 732  Insufficient_Weight
## 733  Insufficient_Weight
## 734  Insufficient_Weight
## 735  Insufficient_Weight
## 736  Insufficient_Weight
## 737  Insufficient_Weight
## 738  Insufficient_Weight
## 739  Insufficient_Weight
## 740  Insufficient_Weight
## 741  Insufficient_Weight
## 742  Insufficient_Weight
## 743  Insufficient_Weight
## 744  Insufficient_Weight
## 745  Insufficient_Weight
## 746   Overweight_Level_I
## 747   Overweight_Level_I
## 748   Overweight_Level_I
## 749   Overweight_Level_I
## 750   Overweight_Level_I
## 751   Overweight_Level_I
## 752   Overweight_Level_I
## 753   Overweight_Level_I
## 754   Overweight_Level_I
## 755   Overweight_Level_I
## 756   Overweight_Level_I
## 757   Overweight_Level_I
## 758   Overweight_Level_I
## 759   Overweight_Level_I
## 760   Overweight_Level_I
## 761   Overweight_Level_I
## 762   Overweight_Level_I
## 763   Overweight_Level_I
## 764   Overweight_Level_I
## 765   Overweight_Level_I
## 766   Overweight_Level_I
## 767   Overweight_Level_I
## 768   Overweight_Level_I
## 769   Overweight_Level_I
## 770   Overweight_Level_I
## 771   Overweight_Level_I
## 772   Overweight_Level_I
## 773   Overweight_Level_I
## 774   Overweight_Level_I
## 775   Overweight_Level_I
## 776   Overweight_Level_I
## 777   Overweight_Level_I
## 778   Overweight_Level_I
## 779   Overweight_Level_I
## 780   Overweight_Level_I
## 781   Overweight_Level_I
## 782   Overweight_Level_I
## 783   Overweight_Level_I
## 784   Overweight_Level_I
## 785   Overweight_Level_I
## 786   Overweight_Level_I
## 787   Overweight_Level_I
## 788   Overweight_Level_I
## 789   Overweight_Level_I
## 790   Overweight_Level_I
## 791   Overweight_Level_I
## 792   Overweight_Level_I
## 793   Overweight_Level_I
## 794   Overweight_Level_I
## 795   Overweight_Level_I
## 796   Overweight_Level_I
## 797   Overweight_Level_I
## 798   Overweight_Level_I
## 799   Overweight_Level_I
## 800   Overweight_Level_I
## 801   Overweight_Level_I
## 802   Overweight_Level_I
## 803   Overweight_Level_I
## 804   Overweight_Level_I
## 805   Overweight_Level_I
## 806   Overweight_Level_I
## 807   Overweight_Level_I
## 808   Overweight_Level_I
## 809   Overweight_Level_I
## 810   Overweight_Level_I
## 811   Overweight_Level_I
## 812   Overweight_Level_I
## 813   Overweight_Level_I
## 814   Overweight_Level_I
## 815   Overweight_Level_I
## 816   Overweight_Level_I
## 817   Overweight_Level_I
## 818   Overweight_Level_I
## 819   Overweight_Level_I
## 820   Overweight_Level_I
## 821   Overweight_Level_I
## 822   Overweight_Level_I
## 823   Overweight_Level_I
## 824   Overweight_Level_I
## 825   Overweight_Level_I
## 826   Overweight_Level_I
## 827   Overweight_Level_I
## 828   Overweight_Level_I
## 829   Overweight_Level_I
## 830   Overweight_Level_I
## 831   Overweight_Level_I
## 832   Overweight_Level_I
## 833   Overweight_Level_I
## 834   Overweight_Level_I
## 835   Overweight_Level_I
## 836   Overweight_Level_I
## 837   Overweight_Level_I
## 838   Overweight_Level_I
## 839   Overweight_Level_I
## 840   Overweight_Level_I
## 841   Overweight_Level_I
## 842   Overweight_Level_I
## 843   Overweight_Level_I
## 844   Overweight_Level_I
## 845   Overweight_Level_I
## 846   Overweight_Level_I
## 847   Overweight_Level_I
## 848   Overweight_Level_I
## 849   Overweight_Level_I
## 850   Overweight_Level_I
## 851   Overweight_Level_I
## 852   Overweight_Level_I
## 853   Overweight_Level_I
## 854   Overweight_Level_I
## 855   Overweight_Level_I
## 856   Overweight_Level_I
## 857   Overweight_Level_I
## 858   Overweight_Level_I
## 859   Overweight_Level_I
## 860   Overweight_Level_I
## 861   Overweight_Level_I
## 862   Overweight_Level_I
## 863   Overweight_Level_I
## 864   Overweight_Level_I
## 865   Overweight_Level_I
## 866   Overweight_Level_I
## 867   Overweight_Level_I
## 868   Overweight_Level_I
## 869   Overweight_Level_I
## 870   Overweight_Level_I
## 871   Overweight_Level_I
## 872   Overweight_Level_I
## 873   Overweight_Level_I
## 874   Overweight_Level_I
## 875   Overweight_Level_I
## 876   Overweight_Level_I
## 877   Overweight_Level_I
## 878   Overweight_Level_I
## 879   Overweight_Level_I
## 880   Overweight_Level_I
## 881   Overweight_Level_I
## 882   Overweight_Level_I
## 883   Overweight_Level_I
## 884   Overweight_Level_I
## 885   Overweight_Level_I
## 886   Overweight_Level_I
## 887   Overweight_Level_I
## 888   Overweight_Level_I
## 889   Overweight_Level_I
## 890   Overweight_Level_I
## 891   Overweight_Level_I
## 892   Overweight_Level_I
## 893   Overweight_Level_I
## 894   Overweight_Level_I
## 895   Overweight_Level_I
## 896   Overweight_Level_I
## 897   Overweight_Level_I
## 898   Overweight_Level_I
## 899   Overweight_Level_I
## 900   Overweight_Level_I
## 901   Overweight_Level_I
## 902   Overweight_Level_I
## 903   Overweight_Level_I
## 904   Overweight_Level_I
## 905   Overweight_Level_I
## 906   Overweight_Level_I
## 907   Overweight_Level_I
## 908   Overweight_Level_I
## 909   Overweight_Level_I
## 910   Overweight_Level_I
## 911   Overweight_Level_I
## 912   Overweight_Level_I
## 913   Overweight_Level_I
## 914   Overweight_Level_I
## 915   Overweight_Level_I
## 916   Overweight_Level_I
## 917   Overweight_Level_I
## 918   Overweight_Level_I
## 919   Overweight_Level_I
## 920   Overweight_Level_I
## 921   Overweight_Level_I
## 922   Overweight_Level_I
## 923   Overweight_Level_I
## 924   Overweight_Level_I
## 925   Overweight_Level_I
## 926   Overweight_Level_I
## 927   Overweight_Level_I
## 928   Overweight_Level_I
## 929   Overweight_Level_I
## 930   Overweight_Level_I
## 931   Overweight_Level_I
## 932   Overweight_Level_I
## 933   Overweight_Level_I
## 934   Overweight_Level_I
## 935   Overweight_Level_I
## 936   Overweight_Level_I
## 937   Overweight_Level_I
## 938   Overweight_Level_I
## 939   Overweight_Level_I
## 940   Overweight_Level_I
## 941   Overweight_Level_I
## 942   Overweight_Level_I
## 943   Overweight_Level_I
## 944   Overweight_Level_I
## 945   Overweight_Level_I
## 946   Overweight_Level_I
## 947   Overweight_Level_I
## 948   Overweight_Level_I
## 949   Overweight_Level_I
## 950   Overweight_Level_I
## 951   Overweight_Level_I
## 952   Overweight_Level_I
## 953   Overweight_Level_I
## 954   Overweight_Level_I
## 955   Overweight_Level_I
## 956   Overweight_Level_I
## 957   Overweight_Level_I
## 958   Overweight_Level_I
## 959   Overweight_Level_I
## 960   Overweight_Level_I
## 961   Overweight_Level_I
## 962   Overweight_Level_I
## 963   Overweight_Level_I
## 964   Overweight_Level_I
## 965   Overweight_Level_I
## 966   Overweight_Level_I
## 967   Overweight_Level_I
## 968   Overweight_Level_I
## 969   Overweight_Level_I
## 970   Overweight_Level_I
## 971   Overweight_Level_I
## 972   Overweight_Level_I
## 973   Overweight_Level_I
## 974   Overweight_Level_I
## 975   Overweight_Level_I
## 976   Overweight_Level_I
## 977   Overweight_Level_I
## 978  Overweight_Level_II
## 979  Overweight_Level_II
## 980  Overweight_Level_II
## 981  Overweight_Level_II
## 982  Overweight_Level_II
## 983  Overweight_Level_II
## 984  Overweight_Level_II
## 985  Overweight_Level_II
## 986  Overweight_Level_II
## 987  Overweight_Level_II
## 988  Overweight_Level_II
## 989  Overweight_Level_II
## 990  Overweight_Level_II
## 991  Overweight_Level_II
## 992  Overweight_Level_II
## 993  Overweight_Level_II
## 994  Overweight_Level_II
## 995  Overweight_Level_II
## 996  Overweight_Level_II
## 997  Overweight_Level_II
## 998  Overweight_Level_II
## 999  Overweight_Level_II
## 1000 Overweight_Level_II
## 1001 Overweight_Level_II
## 1002 Overweight_Level_II
## 1003 Overweight_Level_II
## 1004 Overweight_Level_II
## 1005 Overweight_Level_II
## 1006 Overweight_Level_II
## 1007 Overweight_Level_II
## 1008 Overweight_Level_II
## 1009 Overweight_Level_II
## 1010 Overweight_Level_II
## 1011 Overweight_Level_II
## 1012 Overweight_Level_II
## 1013 Overweight_Level_II
## 1014 Overweight_Level_II
## 1015 Overweight_Level_II
## 1016 Overweight_Level_II
## 1017 Overweight_Level_II
## 1018 Overweight_Level_II
## 1019 Overweight_Level_II
## 1020 Overweight_Level_II
## 1021 Overweight_Level_II
## 1022 Overweight_Level_II
## 1023 Overweight_Level_II
## 1024 Overweight_Level_II
## 1025 Overweight_Level_II
## 1026 Overweight_Level_II
## 1027 Overweight_Level_II
## 1028 Overweight_Level_II
## 1029 Overweight_Level_II
## 1030 Overweight_Level_II
## 1031 Overweight_Level_II
## 1032 Overweight_Level_II
## 1033 Overweight_Level_II
## 1034 Overweight_Level_II
## 1035 Overweight_Level_II
## 1036 Overweight_Level_II
## 1037 Overweight_Level_II
## 1038 Overweight_Level_II
## 1039 Overweight_Level_II
## 1040 Overweight_Level_II
## 1041 Overweight_Level_II
## 1042 Overweight_Level_II
## 1043 Overweight_Level_II
## 1044 Overweight_Level_II
## 1045 Overweight_Level_II
## 1046 Overweight_Level_II
## 1047 Overweight_Level_II
## 1048 Overweight_Level_II
## 1049 Overweight_Level_II
## 1050 Overweight_Level_II
## 1051 Overweight_Level_II
## 1052 Overweight_Level_II
## 1053 Overweight_Level_II
## 1054 Overweight_Level_II
## 1055 Overweight_Level_II
## 1056 Overweight_Level_II
## 1057 Overweight_Level_II
## 1058 Overweight_Level_II
## 1059 Overweight_Level_II
## 1060 Overweight_Level_II
## 1061 Overweight_Level_II
## 1062 Overweight_Level_II
## 1063 Overweight_Level_II
## 1064 Overweight_Level_II
## 1065 Overweight_Level_II
## 1066 Overweight_Level_II
## 1067 Overweight_Level_II
## 1068 Overweight_Level_II
## 1069 Overweight_Level_II
## 1070 Overweight_Level_II
## 1071 Overweight_Level_II
## 1072 Overweight_Level_II
## 1073 Overweight_Level_II
## 1074 Overweight_Level_II
## 1075 Overweight_Level_II
## 1076 Overweight_Level_II
## 1077 Overweight_Level_II
## 1078 Overweight_Level_II
## 1079 Overweight_Level_II
## 1080 Overweight_Level_II
## 1081 Overweight_Level_II
## 1082 Overweight_Level_II
## 1083 Overweight_Level_II
## 1084 Overweight_Level_II
## 1085 Overweight_Level_II
## 1086 Overweight_Level_II
## 1087 Overweight_Level_II
## 1088 Overweight_Level_II
## 1089 Overweight_Level_II
## 1090 Overweight_Level_II
## 1091 Overweight_Level_II
## 1092 Overweight_Level_II
## 1093 Overweight_Level_II
## 1094 Overweight_Level_II
## 1095 Overweight_Level_II
## 1096 Overweight_Level_II
## 1097 Overweight_Level_II
## 1098 Overweight_Level_II
## 1099 Overweight_Level_II
## 1100 Overweight_Level_II
## 1101 Overweight_Level_II
## 1102 Overweight_Level_II
## 1103 Overweight_Level_II
## 1104 Overweight_Level_II
## 1105 Overweight_Level_II
## 1106 Overweight_Level_II
## 1107 Overweight_Level_II
## 1108 Overweight_Level_II
## 1109 Overweight_Level_II
## 1110 Overweight_Level_II
## 1111 Overweight_Level_II
## 1112 Overweight_Level_II
## 1113 Overweight_Level_II
## 1114 Overweight_Level_II
## 1115 Overweight_Level_II
## 1116 Overweight_Level_II
## 1117 Overweight_Level_II
## 1118 Overweight_Level_II
## 1119 Overweight_Level_II
## 1120 Overweight_Level_II
## 1121 Overweight_Level_II
## 1122 Overweight_Level_II
## 1123 Overweight_Level_II
## 1124 Overweight_Level_II
## 1125 Overweight_Level_II
## 1126 Overweight_Level_II
## 1127 Overweight_Level_II
## 1128 Overweight_Level_II
## 1129 Overweight_Level_II
## 1130 Overweight_Level_II
## 1131 Overweight_Level_II
## 1132 Overweight_Level_II
## 1133 Overweight_Level_II
## 1134 Overweight_Level_II
## 1135 Overweight_Level_II
## 1136 Overweight_Level_II
## 1137 Overweight_Level_II
## 1138 Overweight_Level_II
## 1139 Overweight_Level_II
## 1140 Overweight_Level_II
## 1141 Overweight_Level_II
## 1142 Overweight_Level_II
## 1143 Overweight_Level_II
## 1144 Overweight_Level_II
## 1145 Overweight_Level_II
## 1146 Overweight_Level_II
## 1147 Overweight_Level_II
## 1148 Overweight_Level_II
## 1149 Overweight_Level_II
## 1150 Overweight_Level_II
## 1151 Overweight_Level_II
## 1152 Overweight_Level_II
## 1153 Overweight_Level_II
## 1154 Overweight_Level_II
## 1155 Overweight_Level_II
## 1156 Overweight_Level_II
## 1157 Overweight_Level_II
## 1158 Overweight_Level_II
## 1159 Overweight_Level_II
## 1160 Overweight_Level_II
## 1161 Overweight_Level_II
## 1162 Overweight_Level_II
## 1163 Overweight_Level_II
## 1164 Overweight_Level_II
## 1165 Overweight_Level_II
## 1166 Overweight_Level_II
## 1167 Overweight_Level_II
## 1168 Overweight_Level_II
## 1169 Overweight_Level_II
## 1170 Overweight_Level_II
## 1171 Overweight_Level_II
## 1172 Overweight_Level_II
## 1173 Overweight_Level_II
## 1174 Overweight_Level_II
## 1175 Overweight_Level_II
## 1176 Overweight_Level_II
## 1177 Overweight_Level_II
## 1178 Overweight_Level_II
## 1179 Overweight_Level_II
## 1180 Overweight_Level_II
## 1181 Overweight_Level_II
## 1182 Overweight_Level_II
## 1183 Overweight_Level_II
## 1184 Overweight_Level_II
## 1185 Overweight_Level_II
## 1186 Overweight_Level_II
## 1187 Overweight_Level_II
## 1188 Overweight_Level_II
## 1189 Overweight_Level_II
## 1190 Overweight_Level_II
## 1191 Overweight_Level_II
## 1192 Overweight_Level_II
## 1193 Overweight_Level_II
## 1194 Overweight_Level_II
## 1195 Overweight_Level_II
## 1196 Overweight_Level_II
## 1197 Overweight_Level_II
## 1198 Overweight_Level_II
## 1199 Overweight_Level_II
## 1200 Overweight_Level_II
## 1201 Overweight_Level_II
## 1202 Overweight_Level_II
## 1203 Overweight_Level_II
## 1204 Overweight_Level_II
## 1205 Overweight_Level_II
## 1206 Overweight_Level_II
## 1207 Overweight_Level_II
## 1208 Overweight_Level_II
## 1209 Overweight_Level_II
## 1210      Obesity_Type_I
## 1211      Obesity_Type_I
## 1212      Obesity_Type_I
## 1213      Obesity_Type_I
## 1214      Obesity_Type_I
## 1215      Obesity_Type_I
## 1216      Obesity_Type_I
## 1217      Obesity_Type_I
## 1218      Obesity_Type_I
## 1219      Obesity_Type_I
## 1220      Obesity_Type_I
## 1221      Obesity_Type_I
## 1222      Obesity_Type_I
## 1223      Obesity_Type_I
## 1224      Obesity_Type_I
## 1225      Obesity_Type_I
## 1226      Obesity_Type_I
## 1227      Obesity_Type_I
## 1228      Obesity_Type_I
## 1229      Obesity_Type_I
## 1230      Obesity_Type_I
## 1231      Obesity_Type_I
## 1232      Obesity_Type_I
## 1233      Obesity_Type_I
## 1234      Obesity_Type_I
## 1235      Obesity_Type_I
## 1236      Obesity_Type_I
## 1237      Obesity_Type_I
## 1238      Obesity_Type_I
## 1239      Obesity_Type_I
## 1240      Obesity_Type_I
## 1241      Obesity_Type_I
## 1242      Obesity_Type_I
## 1243      Obesity_Type_I
## 1244      Obesity_Type_I
## 1245      Obesity_Type_I
## 1246      Obesity_Type_I
## 1247      Obesity_Type_I
## 1248      Obesity_Type_I
## 1249      Obesity_Type_I
## 1250      Obesity_Type_I
## 1251      Obesity_Type_I
## 1252      Obesity_Type_I
## 1253      Obesity_Type_I
## 1254      Obesity_Type_I
## 1255      Obesity_Type_I
## 1256      Obesity_Type_I
## 1257      Obesity_Type_I
## 1258      Obesity_Type_I
## 1259      Obesity_Type_I
## 1260      Obesity_Type_I
## 1261      Obesity_Type_I
## 1262      Obesity_Type_I
## 1263      Obesity_Type_I
## 1264      Obesity_Type_I
## 1265      Obesity_Type_I
## 1266      Obesity_Type_I
## 1267      Obesity_Type_I
## 1268      Obesity_Type_I
## 1269      Obesity_Type_I
## 1270      Obesity_Type_I
## 1271      Obesity_Type_I
## 1272      Obesity_Type_I
## 1273      Obesity_Type_I
## 1274      Obesity_Type_I
## 1275      Obesity_Type_I
## 1276      Obesity_Type_I
## 1277      Obesity_Type_I
## 1278      Obesity_Type_I
## 1279      Obesity_Type_I
## 1280      Obesity_Type_I
## 1281      Obesity_Type_I
## 1282      Obesity_Type_I
## 1283      Obesity_Type_I
## 1284      Obesity_Type_I
## 1285      Obesity_Type_I
## 1286      Obesity_Type_I
## 1287      Obesity_Type_I
## 1288      Obesity_Type_I
## 1289      Obesity_Type_I
## 1290      Obesity_Type_I
## 1291      Obesity_Type_I
## 1292      Obesity_Type_I
## 1293      Obesity_Type_I
## 1294      Obesity_Type_I
## 1295      Obesity_Type_I
## 1296      Obesity_Type_I
## 1297      Obesity_Type_I
## 1298      Obesity_Type_I
## 1299      Obesity_Type_I
## 1300      Obesity_Type_I
## 1301      Obesity_Type_I
## 1302      Obesity_Type_I
## 1303      Obesity_Type_I
## 1304      Obesity_Type_I
## 1305      Obesity_Type_I
## 1306      Obesity_Type_I
## 1307      Obesity_Type_I
## 1308      Obesity_Type_I
## 1309      Obesity_Type_I
## 1310      Obesity_Type_I
## 1311      Obesity_Type_I
## 1312      Obesity_Type_I
## 1313      Obesity_Type_I
## 1314      Obesity_Type_I
## 1315      Obesity_Type_I
## 1316      Obesity_Type_I
## 1317      Obesity_Type_I
## 1318      Obesity_Type_I
## 1319      Obesity_Type_I
## 1320      Obesity_Type_I
## 1321      Obesity_Type_I
## 1322      Obesity_Type_I
## 1323      Obesity_Type_I
## 1324      Obesity_Type_I
## 1325      Obesity_Type_I
## 1326      Obesity_Type_I
## 1327      Obesity_Type_I
## 1328      Obesity_Type_I
## 1329      Obesity_Type_I
## 1330      Obesity_Type_I
## 1331      Obesity_Type_I
## 1332      Obesity_Type_I
## 1333      Obesity_Type_I
## 1334      Obesity_Type_I
## 1335      Obesity_Type_I
## 1336      Obesity_Type_I
## 1337      Obesity_Type_I
## 1338      Obesity_Type_I
## 1339      Obesity_Type_I
## 1340      Obesity_Type_I
## 1341      Obesity_Type_I
## 1342      Obesity_Type_I
## 1343      Obesity_Type_I
## 1344      Obesity_Type_I
## 1345      Obesity_Type_I
## 1346      Obesity_Type_I
## 1347      Obesity_Type_I
## 1348      Obesity_Type_I
## 1349      Obesity_Type_I
## 1350      Obesity_Type_I
## 1351      Obesity_Type_I
## 1352      Obesity_Type_I
## 1353      Obesity_Type_I
## 1354      Obesity_Type_I
## 1355      Obesity_Type_I
## 1356      Obesity_Type_I
## 1357      Obesity_Type_I
## 1358      Obesity_Type_I
## 1359      Obesity_Type_I
## 1360      Obesity_Type_I
## 1361      Obesity_Type_I
## 1362      Obesity_Type_I
## 1363      Obesity_Type_I
## 1364      Obesity_Type_I
## 1365      Obesity_Type_I
## 1366      Obesity_Type_I
## 1367      Obesity_Type_I
## 1368      Obesity_Type_I
## 1369      Obesity_Type_I
## 1370      Obesity_Type_I
## 1371      Obesity_Type_I
## 1372      Obesity_Type_I
## 1373      Obesity_Type_I
## 1374      Obesity_Type_I
## 1375      Obesity_Type_I
## 1376      Obesity_Type_I
## 1377      Obesity_Type_I
## 1378      Obesity_Type_I
## 1379      Obesity_Type_I
## 1380      Obesity_Type_I
## 1381      Obesity_Type_I
## 1382      Obesity_Type_I
## 1383      Obesity_Type_I
## 1384      Obesity_Type_I
## 1385      Obesity_Type_I
## 1386      Obesity_Type_I
## 1387      Obesity_Type_I
## 1388      Obesity_Type_I
## 1389      Obesity_Type_I
## 1390      Obesity_Type_I
## 1391      Obesity_Type_I
## 1392      Obesity_Type_I
## 1393      Obesity_Type_I
## 1394      Obesity_Type_I
## 1395      Obesity_Type_I
## 1396      Obesity_Type_I
## 1397      Obesity_Type_I
## 1398      Obesity_Type_I
## 1399      Obesity_Type_I
## 1400      Obesity_Type_I
## 1401      Obesity_Type_I
## 1402      Obesity_Type_I
## 1403      Obesity_Type_I
## 1404      Obesity_Type_I
## 1405      Obesity_Type_I
## 1406      Obesity_Type_I
## 1407      Obesity_Type_I
## 1408      Obesity_Type_I
## 1409      Obesity_Type_I
## 1410      Obesity_Type_I
## 1411      Obesity_Type_I
## 1412      Obesity_Type_I
## 1413      Obesity_Type_I
## 1414      Obesity_Type_I
## 1415      Obesity_Type_I
## 1416      Obesity_Type_I
## 1417      Obesity_Type_I
## 1418      Obesity_Type_I
## 1419      Obesity_Type_I
## 1420      Obesity_Type_I
## 1421      Obesity_Type_I
## 1422      Obesity_Type_I
## 1423      Obesity_Type_I
## 1424      Obesity_Type_I
## 1425      Obesity_Type_I
## 1426      Obesity_Type_I
## 1427      Obesity_Type_I
## 1428      Obesity_Type_I
## 1429      Obesity_Type_I
## 1430      Obesity_Type_I
## 1431      Obesity_Type_I
## 1432      Obesity_Type_I
## 1433      Obesity_Type_I
## 1434      Obesity_Type_I
## 1435      Obesity_Type_I
## 1436      Obesity_Type_I
## 1437      Obesity_Type_I
## 1438      Obesity_Type_I
## 1439      Obesity_Type_I
## 1440      Obesity_Type_I
## 1441      Obesity_Type_I
## 1442      Obesity_Type_I
## 1443      Obesity_Type_I
## 1444      Obesity_Type_I
## 1445      Obesity_Type_I
## 1446      Obesity_Type_I
## 1447      Obesity_Type_I
## 1448      Obesity_Type_I
## 1449      Obesity_Type_I
## 1450      Obesity_Type_I
## 1451      Obesity_Type_I
## 1452      Obesity_Type_I
## 1453      Obesity_Type_I
## 1454      Obesity_Type_I
## 1455      Obesity_Type_I
## 1456      Obesity_Type_I
## 1457      Obesity_Type_I
## 1458      Obesity_Type_I
## 1459      Obesity_Type_I
## 1460      Obesity_Type_I
## 1461      Obesity_Type_I
## 1462      Obesity_Type_I
## 1463      Obesity_Type_I
## 1464      Obesity_Type_I
## 1465      Obesity_Type_I
## 1466      Obesity_Type_I
## 1467      Obesity_Type_I
## 1468      Obesity_Type_I
## 1469      Obesity_Type_I
## 1470      Obesity_Type_I
## 1471      Obesity_Type_I
## 1472      Obesity_Type_I
## 1473      Obesity_Type_I
## 1474      Obesity_Type_I
## 1475      Obesity_Type_I
## 1476      Obesity_Type_I
## 1477      Obesity_Type_I
## 1478      Obesity_Type_I
## 1479      Obesity_Type_I
## 1480      Obesity_Type_I
## 1481      Obesity_Type_I
## 1482      Obesity_Type_I
## 1483      Obesity_Type_I
## 1484      Obesity_Type_I
## 1485      Obesity_Type_I
## 1486      Obesity_Type_I
## 1487      Obesity_Type_I
## 1488      Obesity_Type_I
## 1489      Obesity_Type_I
## 1490      Obesity_Type_I
## 1491      Obesity_Type_I
## 1492      Obesity_Type_I
## 1493      Obesity_Type_I
## 1494      Obesity_Type_I
## 1495      Obesity_Type_I
## 1496      Obesity_Type_I
## 1497      Obesity_Type_I
## 1498      Obesity_Type_I
## 1499      Obesity_Type_I
## 1500      Obesity_Type_I
## 1501      Obesity_Type_I
## 1502      Obesity_Type_I
## 1503      Obesity_Type_I
## 1504      Obesity_Type_I
## 1505      Obesity_Type_I
## 1506      Obesity_Type_I
## 1507      Obesity_Type_I
## 1508      Obesity_Type_I
## 1509      Obesity_Type_I
## 1510      Obesity_Type_I
## 1511      Obesity_Type_I
## 1512      Obesity_Type_I
## 1513      Obesity_Type_I
## 1514     Obesity_Type_II
## 1515     Obesity_Type_II
## 1516     Obesity_Type_II
## 1517     Obesity_Type_II
## 1518     Obesity_Type_II
## 1519     Obesity_Type_II
## 1520     Obesity_Type_II
## 1521     Obesity_Type_II
## 1522     Obesity_Type_II
## 1523     Obesity_Type_II
## 1524     Obesity_Type_II
## 1525     Obesity_Type_II
## 1526     Obesity_Type_II
## 1527     Obesity_Type_II
## 1528     Obesity_Type_II
## 1529     Obesity_Type_II
## 1530     Obesity_Type_II
## 1531     Obesity_Type_II
## 1532     Obesity_Type_II
## 1533     Obesity_Type_II
## 1534     Obesity_Type_II
## 1535     Obesity_Type_II
## 1536     Obesity_Type_II
## 1537     Obesity_Type_II
## 1538     Obesity_Type_II
## 1539     Obesity_Type_II
## 1540     Obesity_Type_II
## 1541     Obesity_Type_II
## 1542     Obesity_Type_II
## 1543     Obesity_Type_II
## 1544     Obesity_Type_II
## 1545     Obesity_Type_II
## 1546     Obesity_Type_II
## 1547     Obesity_Type_II
## 1548     Obesity_Type_II
## 1549     Obesity_Type_II
## 1550     Obesity_Type_II
## 1551     Obesity_Type_II
## 1552     Obesity_Type_II
## 1553     Obesity_Type_II
## 1554     Obesity_Type_II
## 1555     Obesity_Type_II
## 1556     Obesity_Type_II
## 1557     Obesity_Type_II
## 1558     Obesity_Type_II
## 1559     Obesity_Type_II
## 1560     Obesity_Type_II
## 1561     Obesity_Type_II
## 1562     Obesity_Type_II
## 1563     Obesity_Type_II
## 1564     Obesity_Type_II
## 1565     Obesity_Type_II
## 1566     Obesity_Type_II
## 1567     Obesity_Type_II
## 1568     Obesity_Type_II
## 1569     Obesity_Type_II
## 1570     Obesity_Type_II
## 1571     Obesity_Type_II
## 1572     Obesity_Type_II
## 1573     Obesity_Type_II
## 1574     Obesity_Type_II
## 1575     Obesity_Type_II
## 1576     Obesity_Type_II
## 1577     Obesity_Type_II
## 1578     Obesity_Type_II
## 1579     Obesity_Type_II
## 1580     Obesity_Type_II
## 1581     Obesity_Type_II
## 1582     Obesity_Type_II
## 1583     Obesity_Type_II
## 1584     Obesity_Type_II
## 1585     Obesity_Type_II
## 1586     Obesity_Type_II
## 1587     Obesity_Type_II
## 1588     Obesity_Type_II
## 1589     Obesity_Type_II
## 1590     Obesity_Type_II
## 1591     Obesity_Type_II
## 1592     Obesity_Type_II
## 1593     Obesity_Type_II
## 1594     Obesity_Type_II
## 1595     Obesity_Type_II
## 1596     Obesity_Type_II
## 1597     Obesity_Type_II
## 1598     Obesity_Type_II
## 1599     Obesity_Type_II
## 1600     Obesity_Type_II
## 1601     Obesity_Type_II
## 1602     Obesity_Type_II
## 1603     Obesity_Type_II
## 1604     Obesity_Type_II
## 1605     Obesity_Type_II
## 1606     Obesity_Type_II
## 1607     Obesity_Type_II
## 1608     Obesity_Type_II
## 1609     Obesity_Type_II
## 1610     Obesity_Type_II
## 1611     Obesity_Type_II
## 1612     Obesity_Type_II
## 1613     Obesity_Type_II
## 1614     Obesity_Type_II
## 1615     Obesity_Type_II
## 1616     Obesity_Type_II
## 1617     Obesity_Type_II
## 1618     Obesity_Type_II
## 1619     Obesity_Type_II
## 1620     Obesity_Type_II
## 1621     Obesity_Type_II
## 1622     Obesity_Type_II
## 1623     Obesity_Type_II
## 1624     Obesity_Type_II
## 1625     Obesity_Type_II
## 1626     Obesity_Type_II
## 1627     Obesity_Type_II
## 1628     Obesity_Type_II
## 1629     Obesity_Type_II
## 1630     Obesity_Type_II
## 1631     Obesity_Type_II
## 1632     Obesity_Type_II
## 1633     Obesity_Type_II
## 1634     Obesity_Type_II
## 1635     Obesity_Type_II
## 1636     Obesity_Type_II
## 1637     Obesity_Type_II
## 1638     Obesity_Type_II
## 1639     Obesity_Type_II
## 1640     Obesity_Type_II
## 1641     Obesity_Type_II
## 1642     Obesity_Type_II
## 1643     Obesity_Type_II
## 1644     Obesity_Type_II
## 1645     Obesity_Type_II
## 1646     Obesity_Type_II
## 1647     Obesity_Type_II
## 1648     Obesity_Type_II
## 1649     Obesity_Type_II
## 1650     Obesity_Type_II
## 1651     Obesity_Type_II
## 1652     Obesity_Type_II
## 1653     Obesity_Type_II
## 1654     Obesity_Type_II
## 1655     Obesity_Type_II
## 1656     Obesity_Type_II
## 1657     Obesity_Type_II
## 1658     Obesity_Type_II
## 1659     Obesity_Type_II
## 1660     Obesity_Type_II
## 1661     Obesity_Type_II
## 1662     Obesity_Type_II
## 1663     Obesity_Type_II
## 1664     Obesity_Type_II
## 1665     Obesity_Type_II
## 1666     Obesity_Type_II
## 1667     Obesity_Type_II
## 1668     Obesity_Type_II
## 1669     Obesity_Type_II
## 1670     Obesity_Type_II
## 1671     Obesity_Type_II
## 1672     Obesity_Type_II
## 1673     Obesity_Type_II
## 1674     Obesity_Type_II
## 1675     Obesity_Type_II
## 1676     Obesity_Type_II
## 1677     Obesity_Type_II
## 1678     Obesity_Type_II
## 1679     Obesity_Type_II
## 1680     Obesity_Type_II
## 1681     Obesity_Type_II
## 1682     Obesity_Type_II
## 1683     Obesity_Type_II
## 1684     Obesity_Type_II
## 1685     Obesity_Type_II
## 1686     Obesity_Type_II
## 1687     Obesity_Type_II
## 1688     Obesity_Type_II
## 1689     Obesity_Type_II
## 1690     Obesity_Type_II
## 1691     Obesity_Type_II
## 1692     Obesity_Type_II
## 1693     Obesity_Type_II
## 1694     Obesity_Type_II
## 1695     Obesity_Type_II
## 1696     Obesity_Type_II
## 1697     Obesity_Type_II
## 1698     Obesity_Type_II
## 1699     Obesity_Type_II
## 1700     Obesity_Type_II
## 1701     Obesity_Type_II
## 1702     Obesity_Type_II
## 1703     Obesity_Type_II
## 1704     Obesity_Type_II
## 1705     Obesity_Type_II
## 1706     Obesity_Type_II
## 1707     Obesity_Type_II
## 1708     Obesity_Type_II
## 1709     Obesity_Type_II
## 1710     Obesity_Type_II
## 1711     Obesity_Type_II
## 1712     Obesity_Type_II
## 1713     Obesity_Type_II
## 1714     Obesity_Type_II
## 1715     Obesity_Type_II
## 1716     Obesity_Type_II
## 1717     Obesity_Type_II
## 1718     Obesity_Type_II
## 1719     Obesity_Type_II
## 1720     Obesity_Type_II
## 1721     Obesity_Type_II
## 1722     Obesity_Type_II
## 1723     Obesity_Type_II
## 1724     Obesity_Type_II
## 1725     Obesity_Type_II
## 1726     Obesity_Type_II
## 1727     Obesity_Type_II
## 1728     Obesity_Type_II
## 1729     Obesity_Type_II
## 1730     Obesity_Type_II
## 1731     Obesity_Type_II
## 1732     Obesity_Type_II
## 1733     Obesity_Type_II
## 1734     Obesity_Type_II
## 1735     Obesity_Type_II
## 1736     Obesity_Type_II
## 1737     Obesity_Type_II
## 1738     Obesity_Type_II
## 1739     Obesity_Type_II
## 1740     Obesity_Type_II
## 1741     Obesity_Type_II
## 1742     Obesity_Type_II
## 1743     Obesity_Type_II
## 1744     Obesity_Type_II
## 1745     Obesity_Type_II
## 1746     Obesity_Type_II
## 1747     Obesity_Type_II
## 1748     Obesity_Type_II
## 1749     Obesity_Type_II
## 1750     Obesity_Type_II
## 1751     Obesity_Type_II
## 1752     Obesity_Type_II
## 1753     Obesity_Type_II
## 1754     Obesity_Type_II
## 1755     Obesity_Type_II
## 1756     Obesity_Type_II
## 1757     Obesity_Type_II
## 1758     Obesity_Type_II
## 1759     Obesity_Type_II
## 1760     Obesity_Type_II
## 1761     Obesity_Type_II
## 1762     Obesity_Type_II
## 1763     Obesity_Type_II
## 1764     Obesity_Type_II
## 1765     Obesity_Type_II
## 1766     Obesity_Type_II
## 1767     Obesity_Type_II
## 1768     Obesity_Type_II
## 1769     Obesity_Type_II
## 1770     Obesity_Type_II
## 1771     Obesity_Type_II
## 1772     Obesity_Type_II
## 1773     Obesity_Type_II
## 1774     Obesity_Type_II
## 1775     Obesity_Type_II
## 1776     Obesity_Type_II
## 1777     Obesity_Type_II
## 1778     Obesity_Type_II
## 1779     Obesity_Type_II
## 1780     Obesity_Type_II
## 1781     Obesity_Type_II
## 1782     Obesity_Type_II
## 1783     Obesity_Type_II
## 1784     Obesity_Type_II
## 1785     Obesity_Type_II
## 1786     Obesity_Type_II
## 1787     Obesity_Type_II
## 1788     Obesity_Type_II
## 1789     Obesity_Type_II
## 1790     Obesity_Type_II
## 1791     Obesity_Type_II
## 1792     Obesity_Type_II
## 1793     Obesity_Type_II
## 1794     Obesity_Type_II
## 1795     Obesity_Type_II
## 1796     Obesity_Type_II
## 1797     Obesity_Type_II
## 1798     Obesity_Type_II
## 1799     Obesity_Type_II
## 1800    Obesity_Type_III
## 1801    Obesity_Type_III
## 1802    Obesity_Type_III
## 1803    Obesity_Type_III
## 1804    Obesity_Type_III
## 1805    Obesity_Type_III
## 1806    Obesity_Type_III
## 1807    Obesity_Type_III
## 1808    Obesity_Type_III
## 1809    Obesity_Type_III
## 1810    Obesity_Type_III
## 1811    Obesity_Type_III
## 1812    Obesity_Type_III
## 1813    Obesity_Type_III
## 1814    Obesity_Type_III
## 1815    Obesity_Type_III
## 1816    Obesity_Type_III
## 1817    Obesity_Type_III
## 1818    Obesity_Type_III
## 1819    Obesity_Type_III
## 1820    Obesity_Type_III
## 1821    Obesity_Type_III
## 1822    Obesity_Type_III
## 1823    Obesity_Type_III
## 1824    Obesity_Type_III
## 1825    Obesity_Type_III
## 1826    Obesity_Type_III
## 1827    Obesity_Type_III
## 1828    Obesity_Type_III
## 1829    Obesity_Type_III
## 1830    Obesity_Type_III
## 1831    Obesity_Type_III
## 1832    Obesity_Type_III
## 1833    Obesity_Type_III
## 1834    Obesity_Type_III
## 1835    Obesity_Type_III
## 1836    Obesity_Type_III
## 1837    Obesity_Type_III
## 1838    Obesity_Type_III
## 1839    Obesity_Type_III
## 1840    Obesity_Type_III
## 1841    Obesity_Type_III
## 1842    Obesity_Type_III
## 1843    Obesity_Type_III
## 1844    Obesity_Type_III
## 1845    Obesity_Type_III
## 1846    Obesity_Type_III
## 1847    Obesity_Type_III
## 1848    Obesity_Type_III
## 1849    Obesity_Type_III
## 1850    Obesity_Type_III
## 1851    Obesity_Type_III
## 1852    Obesity_Type_III
## 1853    Obesity_Type_III
## 1854    Obesity_Type_III
## 1855    Obesity_Type_III
## 1856    Obesity_Type_III
## 1857    Obesity_Type_III
## 1858    Obesity_Type_III
## 1859    Obesity_Type_III
## 1860    Obesity_Type_III
## 1861    Obesity_Type_III
## 1862    Obesity_Type_III
## 1863    Obesity_Type_III
## 1864    Obesity_Type_III
## 1865    Obesity_Type_III
## 1866    Obesity_Type_III
## 1867    Obesity_Type_III
## 1868    Obesity_Type_III
## 1869    Obesity_Type_III
## 1870    Obesity_Type_III
## 1871    Obesity_Type_III
## 1872    Obesity_Type_III
## 1873    Obesity_Type_III
## 1874    Obesity_Type_III
## 1875    Obesity_Type_III
## 1876    Obesity_Type_III
## 1877    Obesity_Type_III
## 1878    Obesity_Type_III
## 1879    Obesity_Type_III
## 1880    Obesity_Type_III
## 1881    Obesity_Type_III
## 1882    Obesity_Type_III
## 1883    Obesity_Type_III
## 1884    Obesity_Type_III
## 1885    Obesity_Type_III
## 1886    Obesity_Type_III
## 1887    Obesity_Type_III
## 1888    Obesity_Type_III
## 1889    Obesity_Type_III
## 1890    Obesity_Type_III
## 1891    Obesity_Type_III
## 1892    Obesity_Type_III
## 1893    Obesity_Type_III
## 1894    Obesity_Type_III
## 1895    Obesity_Type_III
## 1896    Obesity_Type_III
## 1897    Obesity_Type_III
## 1898    Obesity_Type_III
## 1899    Obesity_Type_III
## 1900    Obesity_Type_III
## 1901    Obesity_Type_III
## 1902    Obesity_Type_III
## 1903    Obesity_Type_III
## 1904    Obesity_Type_III
## 1905    Obesity_Type_III
## 1906    Obesity_Type_III
## 1907    Obesity_Type_III
## 1908    Obesity_Type_III
## 1909    Obesity_Type_III
## 1910    Obesity_Type_III
## 1911    Obesity_Type_III
## 1912    Obesity_Type_III
## 1913    Obesity_Type_III
## 1914    Obesity_Type_III
## 1915    Obesity_Type_III
## 1916    Obesity_Type_III
## 1917    Obesity_Type_III
## 1918    Obesity_Type_III
## 1919    Obesity_Type_III
## 1920    Obesity_Type_III
## 1921    Obesity_Type_III
## 1922    Obesity_Type_III
## 1923    Obesity_Type_III
## 1924    Obesity_Type_III
## 1925    Obesity_Type_III
## 1926    Obesity_Type_III
## 1927    Obesity_Type_III
## 1928    Obesity_Type_III
## 1929    Obesity_Type_III
## 1930    Obesity_Type_III
## 1931    Obesity_Type_III
## 1932    Obesity_Type_III
## 1933    Obesity_Type_III
## 1934    Obesity_Type_III
## 1935    Obesity_Type_III
## 1936    Obesity_Type_III
## 1937    Obesity_Type_III
## 1938    Obesity_Type_III
## 1939    Obesity_Type_III
## 1940    Obesity_Type_III
## 1941    Obesity_Type_III
## 1942    Obesity_Type_III
## 1943    Obesity_Type_III
## 1944    Obesity_Type_III
## 1945    Obesity_Type_III
## 1946    Obesity_Type_III
## 1947    Obesity_Type_III
## 1948    Obesity_Type_III
## 1949    Obesity_Type_III
## 1950    Obesity_Type_III
## 1951    Obesity_Type_III
## 1952    Obesity_Type_III
## 1953    Obesity_Type_III
## 1954    Obesity_Type_III
## 1955    Obesity_Type_III
## 1956    Obesity_Type_III
## 1957    Obesity_Type_III
## 1958    Obesity_Type_III
## 1959    Obesity_Type_III
## 1960    Obesity_Type_III
## 1961    Obesity_Type_III
## 1962    Obesity_Type_III
## 1963    Obesity_Type_III
## 1964    Obesity_Type_III
## 1965    Obesity_Type_III
## 1966    Obesity_Type_III
## 1967    Obesity_Type_III
## 1968    Obesity_Type_III
## 1969    Obesity_Type_III
## 1970    Obesity_Type_III
## 1971    Obesity_Type_III
## 1972    Obesity_Type_III
## 1973    Obesity_Type_III
## 1974    Obesity_Type_III
## 1975    Obesity_Type_III
## 1976    Obesity_Type_III
## 1977    Obesity_Type_III
## 1978    Obesity_Type_III
## 1979    Obesity_Type_III
## 1980    Obesity_Type_III
## 1981    Obesity_Type_III
## 1982    Obesity_Type_III
## 1983    Obesity_Type_III
## 1984    Obesity_Type_III
## 1985    Obesity_Type_III
## 1986    Obesity_Type_III
## 1987    Obesity_Type_III
## 1988    Obesity_Type_III
## 1989    Obesity_Type_III
## 1990    Obesity_Type_III
## 1991    Obesity_Type_III
## 1992    Obesity_Type_III
## 1993    Obesity_Type_III
## 1994    Obesity_Type_III
## 1995    Obesity_Type_III
## 1996    Obesity_Type_III
## 1997    Obesity_Type_III
## 1998    Obesity_Type_III
## 1999    Obesity_Type_III
## 2000    Obesity_Type_III
## 2001    Obesity_Type_III
## 2002    Obesity_Type_III
## 2003    Obesity_Type_III
## 2004    Obesity_Type_III
## 2005    Obesity_Type_III
## 2006    Obesity_Type_III
## 2007    Obesity_Type_III
## 2008    Obesity_Type_III
## 2009    Obesity_Type_III
## 2010    Obesity_Type_III
## 2011    Obesity_Type_III
## 2012    Obesity_Type_III
## 2013    Obesity_Type_III
## 2014    Obesity_Type_III
## 2015    Obesity_Type_III
## 2016    Obesity_Type_III
## 2017    Obesity_Type_III
## 2018    Obesity_Type_III
## 2019    Obesity_Type_III
## 2020    Obesity_Type_III
## 2021    Obesity_Type_III
## 2022    Obesity_Type_III
## 2023    Obesity_Type_III
## 2024    Obesity_Type_III
## 2025    Obesity_Type_III
## 2026    Obesity_Type_III
## 2027    Obesity_Type_III
## 2028    Obesity_Type_III
## 2029    Obesity_Type_III
## 2030    Obesity_Type_III
## 2031    Obesity_Type_III
## 2032    Obesity_Type_III
## 2033    Obesity_Type_III
## 2034    Obesity_Type_III
## 2035    Obesity_Type_III
## 2036    Obesity_Type_III
## 2037    Obesity_Type_III
## 2038    Obesity_Type_III
## 2039    Obesity_Type_III
## 2040    Obesity_Type_III
## 2041    Obesity_Type_III
## 2042    Obesity_Type_III
## 2043    Obesity_Type_III
## 2044    Obesity_Type_III
## 2045    Obesity_Type_III
## 2046    Obesity_Type_III
## 2047    Obesity_Type_III
## 2048    Obesity_Type_III
## 2049    Obesity_Type_III
## 2050    Obesity_Type_III
## 2051    Obesity_Type_III
## 2052    Obesity_Type_III
## 2053    Obesity_Type_III
## 2054    Obesity_Type_III
## 2055    Obesity_Type_III
## 2056    Obesity_Type_III
## 2057    Obesity_Type_III
## 2058    Obesity_Type_III
## 2059    Obesity_Type_III
## 2060    Obesity_Type_III
## 2061    Obesity_Type_III
## 2062    Obesity_Type_III
## 2063    Obesity_Type_III
## 2064    Obesity_Type_III
## 2065    Obesity_Type_III
## 2066    Obesity_Type_III
## 2067    Obesity_Type_III
## 2068    Obesity_Type_III
## 2069    Obesity_Type_III
## 2070    Obesity_Type_III
## 2071    Obesity_Type_III
## 2072    Obesity_Type_III
## 2073    Obesity_Type_III
## 2074    Obesity_Type_III
## 2075    Obesity_Type_III
## 2076    Obesity_Type_III
## 2077    Obesity_Type_III
## 2078    Obesity_Type_III
## 2079    Obesity_Type_III
## 2080    Obesity_Type_III
## 2081    Obesity_Type_III
## 2082    Obesity_Type_III
## 2083    Obesity_Type_III
## 2084    Obesity_Type_III
## 2085    Obesity_Type_III
## 2086    Obesity_Type_III
## 2087    Obesity_Type_III
## 2088    Obesity_Type_III
## 2089    Obesity_Type_III
## 2090    Obesity_Type_III
## 2091    Obesity_Type_III
## 2092    Obesity_Type_III
## 2093    Obesity_Type_III
## 2094    Obesity_Type_III
## 2095    Obesity_Type_III
## 2096    Obesity_Type_III
## 2097    Obesity_Type_III
## 2098    Obesity_Type_III
## 2099    Obesity_Type_III
## 2100    Obesity_Type_III
## 2101    Obesity_Type_III
## 2102    Obesity_Type_III
## 2103    Obesity_Type_III
## 2104    Obesity_Type_III
## 2105    Obesity_Type_III
## 2106    Obesity_Type_III
## 2107    Obesity_Type_III
## 2108    Obesity_Type_III
## 2109    Obesity_Type_III
## 2110    Obesity_Type_III
## 2111    Obesity_Type_III
library(GGally)
## Registered S3 method overwritten by 'GGally':
##   method from   
##   +.gg   ggplot2
ggduo(obesity_new, columnsY = 17, types = list(continuous = "cor"))
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.
## `stat_bin()` using `bins = 30`. Pick better value with `binwidth`.

calories_activity <- obesity_new %>%
  select(c(Frequent_consumption_of_high_caloric_food, Physical_activity_frequency, Obesity)) %>%
  group_by(Obesity, Frequent_consumption_of_high_caloric_food, Physical_activity_frequency ) %>%
  summarise(count = n()) %>%
  ungroup()
## `summarise()` has grouped output by 'Obesity',
## 'Frequent_consumption_of_high_caloric_food'. You can override using the
## `.groups` argument.
calories_activity <- calories_activity %>% mutate(label = glue("Total : {count}
                                                                Obesity Type : {Obesity}
                                                                Frequent Consumpyion Of High Caloric Food : {Frequent_consumption_of_high_caloric_food}
                                                                Frequency of Physical Activity : {Physical_activity_frequency}"))
calories_activity
## # A tibble: 49 × 5
##    Obesity             Frequent_consumption_of_hig… Physical_activi… count label
##    <fct>               <fct>                        <fct>            <int> <glu>
##  1 Insufficient_Weight no                           I do not have        9 Tota…
##  2 Insufficient_Weight no                           1 - 2 times         23 Tota…
##  3 Insufficient_Weight no                           3 - 4 times         18 Tota…
##  4 Insufficient_Weight no                           More than 4 tim…     1 Tota…
##  5 Insufficient_Weight yes                          I do not have       63 Tota…
##  6 Insufficient_Weight yes                          1 - 2 times         49 Tota…
##  7 Insufficient_Weight yes                          3 - 4 times         99 Tota…
##  8 Insufficient_Weight yes                          More than 4 tim…    10 Tota…
##  9 Normal_Weight       no                           I do not have       21 Tota…
## 10 Normal_Weight       no                           1 - 2 times         16 Tota…
## # … with 39 more rows
plota <- ggplot(calories_activity, aes(x = Physical_activity_frequency, y = count, fill = Obesity, text = label)) +
        geom_col(position = "dodge", stat = "identity") +
        facet_wrap(vars(Frequent_consumption_of_high_caloric_food)) +
        scale_fill_viridis(discrete = T, option = "C") +
        scale_x_discrete(expand = expansion(mult = c(0.0001, 0.0001)))+
        labs(title = NULL,
             x = NULL,
             y = NULL,
             fill = NULL) +
        theme(legend.title = element_blank(),
              axis.text.x = element_text(angle = 30, hjust = 1),
              plot.title = element_text(face = "bold"),
              panel.background = element_rect(fill = "#ffffff"),
              axis.line.y = element_line(colour = "grey"),
              axis.line.x = element_blank(),
              panel.grid = element_blank()) +
        theme(axis.text.x = element_text(angle = 60, hjust=1))
## Warning: Ignoring unknown parameters: stat
plota

ggplotly(plota, tooltip = "text")
calories_meals <- obesity_new %>%
  select(c(Calories_consumption_monitoring, Number_of_main_meals, Obesity)) %>%
  group_by(Calories_consumption_monitoring, Number_of_main_meals, Obesity) %>%
  summarise(count = n()) %>%
  ungroup()
## `summarise()` has grouped output by 'Calories_consumption_monitoring',
## 'Number_of_main_meals'. You can override using the `.groups` argument.
calories_meals <- calories_meals %>% mutate(label = glue("Total : {count}
                                                          Obesity Type : {Obesity}
                                                          Calories Consumpyion Monitorting : {Calories_consumption_monitoring}
                                                          Number of Main Meals : {Number_of_main_meals}"))
calories_meals
## # A tibble: 36 × 5
##    Calories_consumption_monitoring Number_of_main_meals Obesity      count label
##    <fct>                           <fct>                <fct>        <int> <glu>
##  1 no                              1                    Insufficien…    37 Tota…
##  2 no                              1                    Normal_Weig…    47 Tota…
##  3 no                              1                    Obesity_Typ…    79 Tota…
##  4 no                              1                    Obesity_Typ…    24 Tota…
##  5 no                              1                    Overweight_…    64 Tota…
##  6 no                              1                    Overweight_…    48 Tota…
##  7 no                              2                    Insufficien…    16 Tota…
##  8 no                              2                    Obesity_Typ…    47 Tota…
##  9 no                              2                    Obesity_Typ…    36 Tota…
## 10 no                              2                    Overweight_…    17 Tota…
## # … with 26 more rows
plotb <- ggplot(calories_meals, aes(x = Number_of_main_meals, y = count, fill = Obesity, text = label)) +
        geom_col(position = "dodge") +
        facet_wrap(vars(Calories_consumption_monitoring)) +
        scale_fill_viridis(discrete = T, option = "C") +
        scale_x_discrete(expand = expansion(mult = c(0.0001, 0.0001)))+
        labs(title = NULL,
             subtitle = "Calories Consumption Monitoring",
             x = "Number of Main Meals",
             y = NULL,
             fill = "Obesity Type") +
        theme(legend.title = element_blank(),
              axis.text.x = element_text(angle = 30, hjust = 1),
              plot.title = element_text(face = "bold"),
              panel.background = element_rect(fill = "#ffffff"),
              axis.line.y = element_line(colour = "grey"),
              axis.line.x = element_blank(),
              panel.grid = element_blank()) +
        theme(axis.text.x = element_text(angle = 60, hjust=1))
plotb

ggplotly(plotb, tooltip = "text")
gene_snack <- obesity_new %>%
  select(c(Family_History_with_Overweight, Consumption_of_food_between_meals, Obesity)) %>%
  group_by(Family_History_with_Overweight, Consumption_of_food_between_meals, Obesity) %>%
  summarise(count = n()) %>%
  ungroup()
## `summarise()` has grouped output by 'Family_History_with_Overweight',
## 'Consumption_of_food_between_meals'. You can override using the `.groups`
## argument.
gene_snack <- gene_snack %>% mutate(label = glue("Total : {count}
                                                          Obesity Type : {Obesity}
                                                          Family History with Overweight : {Family_History_with_Overweight}
                                                          Consumption of food between of Meals : {Consumption_of_food_between_meals}"))
gene_snack
## # A tibble: 41 × 5
##    Family_History_with_Overweight Consumption_of_food_betwe… Obesity count label
##    <fct>                          <fct>                      <fct>   <int> <glu>
##  1 no                             Always                     Normal…    18 Tota…
##  2 no                             Always                     Obesit…     1 Tota…
##  3 no                             Frequently                 Insuff…    74 Tota…
##  4 no                             Frequently                 Normal…    31 Tota…
##  5 no                             Frequently                 Obesit…     1 Tota…
##  6 no                             Frequently                 Overwe…     4 Tota…
##  7 no                             Frequently                 Overwe…     4 Tota…
##  8 no                             no                         Insuff…     1 Tota…
##  9 no                             no                         Normal…     4 Tota…
## 10 no                             no                         Overwe…    27 Tota…
## # … with 31 more rows
#"Distribution of Obesity Type on Food Consumption Between Meals and Family History of Overweight"
plotc <- ggplot(gene_snack, mapping = aes(x = Consumption_of_food_between_meals, y = count, fill = Obesity, text = label)) +
        geom_col(position = "dodge") +
        facet_wrap(vars(Family_History_with_Overweight)) +
        scale_fill_viridis(discrete = T, option = "C") +
        scale_x_discrete(expand = expansion(mult = c(0.0001, 0.0001)))+
        labs(title = NULL,
             subtitle = "Family History with Overweight",
             x = "Consumption Of Food Between Meals",
             y = NULL,
             fill = "Obesity Type") +
        theme(legend.title = element_blank(),
              axis.text.x = element_text(angle = 30, hjust = 1),
              plot.title = element_text(face = "bold"),
              panel.background = element_rect(fill = "#ffffff"),
              axis.line.y = element_line(colour = "grey"),
              axis.line.x = element_blank(),
              panel.grid = element_blank()) +
        theme(axis.text.x = element_text(angle = 60, hjust=1))
plotc

ggplotly(plotc, tooltip = "text")
alcohol_water <- obesity_new %>%
  select(c(Consumption_of_alcohol, Consumption_of_water_daily, Obesity)) %>%
  group_by(Consumption_of_alcohol, Consumption_of_water_daily, Obesity) %>%
  summarise(count = n()) %>%
  ungroup()
## `summarise()` has grouped output by 'Consumption_of_alcohol',
## 'Consumption_of_water_daily'. You can override using the `.groups` argument.
alcohol_water <- alcohol_water %>% mutate(label = glue("Total : {count}
                                                        Obesity Type : {Obesity}
                                                        Alcohol Consumption : {Consumption_of_alcohol}
                                                        Water Daily Consumption : {Consumption_of_water_daily}"))
alcohol_water
## # A tibble: 55 × 5
##    Consumption_of_alcohol Consumption_of_water_daily Obesity         count label
##    <fct>                  <fct>                      <fct>           <int> <glu>
##  1 Always                 Between 1 and 2 L          Normal_Weight       1 Tota…
##  2 Frequently             Less than a liter          Insufficient_W…     1 Tota…
##  3 Frequently             Less than a liter          Normal_Weight       3 Tota…
##  4 Frequently             Less than a liter          Obesity_Type_I      1 Tota…
##  5 Frequently             Less than a liter          Obesity_Type_II     1 Tota…
##  6 Frequently             Less than a liter          Overweight_Lev…     1 Tota…
##  7 Frequently             Between 1 and 2 L          Normal_Weight      14 Tota…
##  8 Frequently             Between 1 and 2 L          Obesity_Type_I      5 Tota…
##  9 Frequently             Between 1 and 2 L          Obesity_Type_II     1 Tota…
## 10 Frequently             Between 1 and 2 L          Overweight_Lev…    10 Tota…
## # … with 45 more rows
plotd <- ggplot(alcohol_water, mapping = aes(x = Consumption_of_alcohol, y = count, fill = Obesity, text = label)) +
        geom_col(position = "dodge") +
        facet_wrap(vars(Consumption_of_water_daily)) +
        scale_fill_viridis(discrete = T, option = "C") +
        scale_x_discrete(expand = expansion(mult = c(0.0001, 0.0001)))+
        labs(title = NULL,
             subtitle = "Daily Water Consumption",
             x = "Alcohol Consumption",
             y = NULL,
             fill = "Obesity Type") +
        theme(legend.title = element_blank(),
              axis.text.x = element_text(angle = 30, hjust = 1),
              plot.title = element_text(face = "bold"),
              panel.background = element_rect(fill = "#ffffff"),
              axis.line.y = element_line(colour = "grey"),
              axis.line.x = element_blank(),
              panel.grid = element_blank()) +
        theme(axis.text.x = element_text(angle = 45, hjust=1))
plotd

smoke_veggie <- obesity_new %>%
  select(c(Frequency_of_consumption_of_vegetables, Smoke, Obesity)) %>%
  group_by(Frequency_of_consumption_of_vegetables, Smoke, Obesity) %>%
  summarise(count = n()) %>%
  ungroup()
## `summarise()` has grouped output by 'Frequency_of_consumption_of_vegetables',
## 'Smoke'. You can override using the `.groups` argument.
smoke_veggie <- smoke_veggie %>% mutate(label = glue("Total : {count}
                                                      Obesity Type : {Obesity}
                                                      Frequency of Vegetable Consumption : {Frequency_of_consumption_of_vegetables}
                                                      Smoke Type : {Smoke}"))
smoke_veggie
## # A tibble: 32 × 5
##    Frequency_of_consumption_of_vegetables Smoke Obesity             count label 
##    <fct>                                  <fct> <fct>               <int> <glue>
##  1 Never                                  no    Insufficient_Weight    23 Total…
##  2 Never                                  no    Normal_Weight          18 Total…
##  3 Never                                  no    Obesity_Type_I         17 Total…
##  4 Never                                  no    Obesity_Type_II        20 Total…
##  5 Never                                  no    Overweight_Level_I     14 Total…
##  6 Never                                  no    Overweight_Level_II     9 Total…
##  7 Never                                  yes   Obesity_Type_II         1 Total…
##  8 Sometimes                              no    Insufficient_Weight    86 Total…
##  9 Sometimes                              no    Normal_Weight         150 Total…
## 10 Sometimes                              no    Obesity_Type_I        252 Total…
## # … with 22 more rows
plote <- ggplot(smoke_veggie, mapping = aes(x = Frequency_of_consumption_of_vegetables, y = count, fill = Obesity, text = label)) +
        geom_col(position = "dodge") +
        facet_wrap(vars(Smoke)) +
        scale_fill_viridis(discrete = T, option = "C") +
        scale_x_discrete(expand = expansion(mult = c(0.0001, 0.0001)))+
        labs(title = NULL,
             subtitle = "Smoke",
             x = "Frequency of Vegetable Consumption",
             y = NULL,
             fill = "Obesity Type") +
        theme(legend.title = element_blank(),
              axis.text.x = element_text(angle = 30, hjust = 1),
              plot.title = element_text(face = "bold"),
              panel.background = element_rect(fill = "#ffffff"),
              axis.line.y = element_line(colour = "grey"),
              axis.line.x = element_blank(),
              panel.grid = element_blank()) +
        theme(axis.text.x = element_text(angle = 45, hjust=1))
plote

Including Plots

You can also embed plots, for example:

Note that the echo = FALSE parameter was added to the code chunk to prevent printing of the R code that generated the plot.